Wodpress:在RSS Feed中插入图片网址

时间:2019-05-31 16:22:45

标签: wordpress rss

我注意到我在wordpress中的rss feed中没有图像URL。因此,我想将其插入新闻通讯自动化中。我尝试了在一些指南中找到的代码。我已将其插入wordpress子主题中的function.php中。

function immagine_nei_feed($content) {


global $post;
 if(has_post_thumbnail($post->ID)) {
 $content = '<div><a href="' . get_the_permalink() . '" target="_blank">' . get_the_post_thumbnail($post->ID, 'medium') . '</a></div>' . $content;
 }
 return $content;
}
add_filter('the_content_feed', 'immagine_nei_feed');
add_filter('the_excerpt_rss', 'immagine_nei_feed');

这是代码。这是feed,但供稿仍未显示帖子内的图片网址。怎么了? 谢谢!

0 个答案:

没有答案