如果您在 WordPress 网站上使用 RSS 提要,您会注意到特色图片默认不包含在 RSS 提要的帖子中。
其实如果主题支持特色图像(缩略图),在主题的 functions.php 文件下加入以下代码就可以实现RSS 中输出自定义特色图像(缩略图)的功能。
- /**
- * Featured image to RSS Feed.
- */
- function featuredtoRSS($content) {
- global $post;
- if ( has_post_thumbnail( $post->ID ) ){
- $content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
- }
- return $content;
- }
- add_filter('the_excerpt_rss', 'featuredtoRSS');
- add_filter('the_content_feed', 'featuredtoRSS');