WP显示没有自定义帖子状态的帖子

时间:2016-07-13 14:24:02

标签: php wordpress content-management-system

我需要在没有自定义帖子状态(存档或精选)的情况下显示我的帖子。但是当我写reload(forcedReload)时,它不起作用并显示所有帖子。

抱歉我的英语不好。但我需要帮助。

// Reload the current page, without using the cache
document.location.reload(true);

1 个答案:

答案 0 :(得分:0)

在循环中尝试'post_status' => 'publish'就好(因为如果你知道你不想要的帖子状态,你应该知道你想要什么,而且你总是会有这个名字):

$query = new WP_Query( array( 'post_status' => 'publish' ) );

更多信息:

https://codex.wordpress.org/Class_Reference/WP_Query#Status_Parameters