我创建了一个wordpress网站。我正在使用我的本地Ubuntu 14.04机器上安装的wordpress版本3.9.1。但是,当我尝试从URL http:/localhost/feed
访问RSS源时,页面将显示为空白。我没有在我的网站上添加任何“帖子”。相反,我有大约100'页'。我也启用了永久链接。请帮我解决这个问题。
答案 0 :(得分:1)
如果您想在Feed(http:/localhost/feed
)中显示您的网页,请在主题的functions.php中添加以下代码。
add_filter('request', 'feed_request');
function feed_request($qv){
$rss_post_types = array('post', 'page');
if(isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = $rss_post_types;
return $qv;
}