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