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

前端之家收集整理的这篇文章主要介绍了WordPress在RSS订阅里显示文章缩略图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通过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');

猜你在找的wordpress相关文章