从rss pull in wordpress小部件中获取特色图片

时间:2018-10-16 13:45:15

标签: php wordpress

我目前正在使用rss将帖子从一个word站点拖到我的主要站点,也就是word站点。 rss可以很好地整理文章,但其中不包含精选图片。

我做了一些研究,每个人都说将以下代码放入functions.php文件中。

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

add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');

但是,放置此代码后,rss仍然没有特色图片。我有什么想念的吗?也许还有另一种方法?谢谢大家的时间。

0 个答案:

没有答案