在我们之前的教程中,我们向您展示了如何在WordPress添加帖子缩略图。可悲的事实是,即使您启用了帖子缩略图,它也不会显示在您的RSS源中。但我们有一个解决方案。在本文中,我们将向您展示如何使用简单的功能将帖子缩略图添加WordPress RSS源。

您所要做的就是打开主题的 functions.php 文件并添加以下代码:

function 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");

随意设置这个样式喜欢。在将其添加RSS之前,请记住使用我们的主要WordPress帖子缩略图教程激活WordPress帖子缩略图