WordPress:我怎样才能获得一篇帖子的RSS提要?

时间:2011-09-01 12:00:47

标签: wordpress wordpress-theming

我希望获得单个帖子的RSS订阅源,这意味着我只想以rss格式撰写整篇文章,这些文章可以提供评论。我有办法在wordpress中这样做吗?

由于

2 个答案:

答案 0 :(得分:12)

感谢这是一个旧版本,但是如果其他人偶然发现这个问题,请在您的网址中附加?withoutcomments = 1:

http://mediasafari.com/news/marketing-careers-announces-two-new-courses/feed/rss/?withoutcomments=1

答案 1 :(得分:6)

在网址末尾添加/feed/rss/会提供帖子的摘录,例如:

http://mediasafari.com/news/marketing-careers-announces-two-new-courses/feed/rss/ 

如果您更改摘录以显示完整文章,则应该有效:

<?php

function rssFullText($content) {
    global $post;
    $content = $post->post_content;
    return $content;
}

add_filter('the_excerpt_rss', 'rssFullText');

?>