存档

文章标签 ‘rss’

WordPress Hack:在RSS Feed中显示缩略图

2010年6月24日 33 条评论

将以下代码复制粘贴到functions.php,你的WordPress博客rss feed 中将显示你博客中图片的缩略图。

  1. function diw_post_thumbnail_feeds($content) {
  2. global $post;
  3. if(has_post_thumbnail($post->ID)) {
  4. $content = '
  5. <div>' . get_the_post_thumbnail($post-&gt;ID) . '</div>
  6. ' . $content;
  7. }
  8. return $content;
  9. }
  10. add_filter('the_excerpt_rss', 'diw_post_thumbnail_feeds');
  11. add_filter('the_content_feed', 'diw_post_thumbnail_feeds');