通过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');