我想迟做总比不做强。
您有几个选项,首先也是最简单的,您可以安装一个插件,在帖子中搜索图像,如果没有找到特征,则将其附加为特征。This plugin can help you, 但还有很多。
如果您不喜欢依赖插件,可以在functions.php
文件,该文件在帖子附件中搜索第一个图像,然后对其进行特征化处理。You have a tutorial here 关于如何做到这一点。
最后,您需要在RSS提要中包含特色图像:
// display featured post thumbnails in WordPress feeds
function wcs_post_thumbnails_in_feeds( $content ) {
global $post;
if( has_post_thumbnail( $post->ID ) ) {
$content = \'<p>\' . get_the_post_thumbnail( $post->ID ) . \'</p>\' . $content;
}
return $content;
}
add_filter( \'the_excerpt_rss\', \'wcs_post_thumbnails_in_feeds\' );
add_filter( \'the_content_feed\', \'wcs_post_thumbnails_in_feeds\' );
希望这有帮助。