我正在编写一个自定义插件,该插件在init
. 此插件正在尝试查询数据库中已存储的一些自定义帖子类型。
这是我的代码:
$args = array()
$myposts = get_posts( $args );
print_r($myposts);
无论我向$args数组传递什么参数,我都不会得到任何结果。例如:
$args = array( \'post_type\' => \'page\' );
现在,如果我使用与
get_pages()
我得到了一个结果。
这可能与WP查询初始化的时间有关?
最合适的回答,由SO网友:BFTrick 整理而成
这似乎是一个简单的问题。get_posts() 具有各种默认设置,其中之一是post_status
设置为public
我的自定义帖子类型不使用post_status
使用默认值,draft
.
要解决此问题,您可以通过post状态查询(请参见下面的代码)或更改数据库中的数据。
$args = array(
\'post_status\' => \'draft\',
\'post_type\' => \'your_custom_post_type\'
);