wordpress在RSS feed中显示错误的特色图像

时间:2016-10-01 12:24:48

标签: wordpress rss

为了将特色图片显示到我的RSS Feed中,我将以下代码添加到了我的function.php

function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '<div>' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
}
return $content;
}

add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');
某些人工作正常,大多数帖子都能正确显示精选图片,但有些图片显示错误的图片 我的意思是来自一个完全不同的帖子的图像(就像我有一个关于抑郁症的帖子,显示有关阅读的帖子中的特色图片) 我尝试使用插件,但无论我尝试什么,我都有同样的问题 我感谢您的帮助 非常感谢你

0 个答案:

没有答案