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

Posted

tags:

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

  1. unction rss_post_thumbnail($content) {
  2. global $post;
  3. if(has_post_thumbnail($post->ID)) {
  4. $content = '<p>' . get_the_post_thumbnail($post->ID) .
  5. '</p>' . get_the_content();
  6. }
  7. return $content;
  8. }
  9. add_filter('the_excerpt_rss', 'rss_post_thumbnail');
  10. add_filter('the_content_feed', 'rss_post_thumbnail');

以上是关于Wordpress向RSS提要添加帖子缩略图的主要内容,如果未能解决你的问题,请参考以下文章