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

Posted

tags:

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

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;
}
add_filter('the_excerpt_rss', 'diw_post_thumbnail_feeds');
add_filter('the_content_feed', 'diw_post_thumbnail_feeds');

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

php 将特色图像添加到Wordpress RSS feed

PHP 通过functions.php禁用WordPress RSS-Feed

php WordPress :: RSS Feed中的特色图片MailChimp

PHP 将自定义帖子类型添加到rss feed [WordPress]

将rss feed异步放入动态页面 - wordpress

Wordpress RSS XML空间错误