这可能是因为新的一周已经开始,WordPress正试图从上周日(昨天)到周六获取帖子。
如果你只想要上周的帖子,为什么不试着取回最后7天的帖子呢。像这样。
$args = array(
\'date_query\' => array(
array(
\'column\' => \'post_date_gmt\',
\'after\' => \'7 days ago\'
)
),
\'post_type\' => \'stars\',
\'posts_per_page\' => \'99\',
\'order\' => \'DEC\',
\'ignore_sticky_posts\' => 1
);
$new_query = new WP_Query ( $args );