在RSS提要中显示文章缩略图

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在RSS提要中显示文章缩略图相关的知识,希望对你有一定的参考价值。

By default wordpress does not include post thumbnails in RSS Feeds. Enable in by add this code the functions.php located inside your themes folder.
  1. function diw_post_thumbnail_feeds($content) {
  2. global $post;
  3. if(has_post_thumbnail($post->ID)) {
  4. $content = '<div>' . get_the_post_thumbnail($post->ID) . '</div>' . $content;
  5. }
  6. return $content;
  7. }
  8. add_filter('the_excerpt_rss', 'diw_post_thumbnail_feeds');
  9. add_filter('the_content_feed', 'diw_post_thumbnail_feeds');

以上是关于在RSS提要中显示文章缩略图的主要内容,如果未能解决你的问题,请参考以下文章

在RSS提要中插入缩略图

Wordpress向RSS提要添加帖子缩略图

在RSS Feed中包含缩略图标题

PHP Wordpress:在RSS Feed中显示帖子缩略图

RSS 提要文章的共享功能

有两个用于 WordPress 的 RSS Feed URL