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

Posted

tags:

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

function insertThumbnailRSS($content) {
   global $post;
   if ( has_post_thumbnail( $post->ID ) ){
       $content = '<p>' . get_the_post_thumbnail( $post->ID, 'medium' ) . '</p>' . $content;
   }
   return $content;
}

add_filter('the_excerpt_rss', 'insertThumbnailRSS');
add_filter('the_content_feed', 'insertThumbnailRSS');

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

PHP Wordpress将帖子缩略图添加到RSS源

php WordPress短代码允许您创建仅在RSS源中可见的内容。

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

PHP 链接在wordpress中的特色邮政缩略图

有两个用于 WordPress 的 RSS Feed URL

从youtube嵌入缩略图和视频(php - Wordpress)