在RSS提要中插入缩略图

Posted

tags:

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

Placed in the functions.php file.
  1. function insertThumbnailRSS($content) {
  2. global $post;
  3. if ( has_post_thumbnail( $post->ID ) ){
  4. $content = '<p>' . get_the_post_thumbnail( $post->ID, 'medium' ) . '</p>' . $content;
  5. }
  6. return $content;
  7. }
  8.  
  9. add_filter('the_excerpt_rss', 'insertThumbnailRSS');
  10. add_filter('the_content_feed', 'insertThumbnailRSS');

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

如何一般地创建与给定 RSS 提要的文章相对应的缩略图

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

在RSS Feed中包含缩略图标题

有两个用于 WordPress 的 RSS Feed URL

PHP Wordpress:在RSS源中注入缩略图

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