程序员人生 网站导航

WordPress在RSS订阅里显示文章缩略图

栏目:WordPress时间:2014-03-21 17:40:41
通过WordPress 2.9引入的get_the_post_thumbnail()函数,我们可以在文章里显示缩略图。而下面的这段代码,则能够让文章缩略图直接显示在RSS订阅中。

操作很简单,把下面的代码复制到主题的functions.php文件,然后保存就可以了。

function diw_post_thumbnail_feeds($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = '<div>' . get_the_post_thumbnail($post->ID) . '</div>' . $content;
}
return $content;
} //32网教76
add_filter('the_excerpt_rss', 'diw_post_thumbnail_feeds');
add_filter('the_content_feed', 'diw_post_thumbnail_feeds');
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐