Wordpress向RSS提要添加帖子缩略图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress向RSS提要添加帖子缩略图相关的知识,希望对你有一定的参考价值。
unction rss_post_thumbnail($content) { global $post; if(has_post_thumbnail($post->ID)) { $content = '<p>' . get_the_post_thumbnail($post->ID) . '</p>' . get_the_content(); } return $content; } add_filter('the_excerpt_rss', 'rss_post_thumbnail'); add_filter('the_content_feed', 'rss_post_thumbnail');
以上是关于Wordpress向RSS提要添加帖子缩略图的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress:在RSS Feed中显示帖子缩略图