我正在使用get\\u posts生成帖子列表。
$args = array(
\'post_type\' => \'post\',
\'numberposts\' => -1,
\'post_status\' => array(\'publish\'),
\'orderby\' => \'post_date\',
\'order\' => \'DESC\',
\'suppress_filters\' => false
);
$posts = get_posts( $args );
但是,该列表包括名为“Auto Draft”的帖子,尽管我没有将它们包括在
\'post_status\'
参数据我所知,这些自动草稿应该只存在7天,但列表中显示的帖子远远早于7天。
我遗漏了什么?谢谢