我如何创建一个包含“私人”帖子的RSS提要? 时间:2013-07-09 作者:Nick5a1 我目前正在以“私人”的身份向wordpress发布文章,因为我不想在网站上看到这些文章。然而,我确实需要这些帖子的RSS提要。关于如何创建在我的网站上看不到的帖子的RSS提要,有什么建议吗? 1 个回复 SO网友:David Kryzaniak 我想你的主题已经有了一个“提要rss”。php’(如果不是,那么它们是如何工作的:http://codex.wordpress.org/Customizing_Feeds)在循环查询之前,需要向查询传递一些参数。//Get all posts that are private or public $the_query = new WP_Query( array( \'post_status\' => array( \'private\', \'publish\' ) ); while ( $the_query->have_posts() ) { //do stuff } 有关更多参数:http://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters 结束 文章导航