add_filter( 'post_thumbnail_html', function( $html ) {
if ( is_feed() ) {
return '';
}
return $html;
}, 999 );
add_filter( 'the_excerpt_rss', 'skm_strip_featured_image_from_rss', 999 );
add_filter( 'the_content_feed', 'skm_strip_featured_image_from_rss', 999 );
function skm_strip_featured_image_from_rss( $content ) {
if ( ! is_feed() ) {
return $content;
}
$post_id = get_the_ID();
$thumb_id = get_post_thumbnail_id( $post_id );
if ( $thumb_id ) {
$thumb_url = wp_get_attachment_url( $thumb_id );
if ( $thumb_url ) {
$content = preg_replace( '/]*>.*?' . preg_quote( $thumb_url, '/' ) . '.*?<\/figure>/is', '', $content );
$content = preg_replace( '/
]*' . preg_quote( $thumb_url, '/' ) . '[^>]*>/is', '', $content );
}
}
return $content;
}