I’m sorry, I did not know about the risks. I found this on the internet and I applied myself. Maybe I should delete my post? But I do not know how? Or please do so. Thank you.
Try this. Place the following code in functions.php file. I have it at the end of the page.
function rss_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = ‘<p>’.get_the_post_thumbnail($post->ID).'</p>’.get_the_content();
}
return $content;
}
add_filter(‘the_excerpt_rss’, ‘rss_thumbnail’);
add_filter(‘the_content_feed’, ‘rss_thumbnail’);