テーマエディタで、function.phpに以下のコードを貼る。
function my_feed_add( $content ) {
$ID = get_the_ID();
if ( has_post_thumbnail( $ID ) ) {
$content = get_the_post_thumbnail( $ID ) . $content;
}
return $content;
}
add_filter( 'the_content_feed', 'my_feed_add' );
add_filter( 'the_excerpt_rss', 'my_feed_add' );
貼ったあとに作成した記事から復活する。