无法在RSS提要中显示特色图像

时间:2012-12-20 作者:Abriel

我目前正在本地服务器上使用WordPress版本3.4.2开发一个测试网站。我尝试过各种不同的解决方案。一些插件包括安装各种插件,如WP RSS图像和RSS中的特色图像。甚至在以下帖子中尝试了一些解决方案:

2 个回复
SO网友:localhost

默认情况下,RSS不会显示。您必须使用RSS2。然而,这将帮助您。将其粘贴到函数中。php:

function insert_thumbnail_into_feed() {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
    // replace thumbnail with yours
    $content = \'<p>\' .get_the_post_thumbnail( $post->ID, \'thumbnail\' ) .\'</p>\';
}

// get post content and replace feed content with
// you can also limit/filter the content to exclude shortcodes and HTML code etc.
$content .= \'<p>\' .get_the_content() .\'</p>\';

return $content;
}
add_filter( \'the_excerpt_rss\', \'insert_thumbnail_into_feed\' );
add_filter( \'the_content_feed\', \'insert_thumbnail_into_feed\' );
希望有帮助。

SO网友:swtshweta

奇怪的是,上面的链接都不适合你。

您可以使用Joost很好地解释的自定义RSS提要方法来尝试这一点(供参考:http://yoast.com/custom-rss-feeds-wordpress/ ). 使用这种方式,您可以显示自定义字段值或特征图像中的任何字段。

结束

相关推荐

各个类别的RSS提要条目长度?

我知道如何从wp中的一个类别中检索rss2提要,即添加/feed 类别名称后面。然而,当我这样做时,并非来自该提要的所有条目都包含在rss中,这是因为我在管理后端将提要限制设置为50。我想知道是否可以通过编程为每个类别/提要单独设置提要长度。我找不到任何关于提要大小的api设置。。。欢迎您的帮助。谢谢你的帮助。