将查询限制为当天

时间:2017-05-21 08:37:38

标签: php wordpress date

我使用这些参数来展示自定义帖子类型(服装)中的帖子:

Scanner input = new SCanner(System.in);
x = input.nextInt();
// y, z input
string other = input.next();
Double d = null;
try {
  d = Double.parseDouble(other);
} catch (NumberFormatException e) {

}

这很好用,但我想要做的是将查询限制为仅限今天创建的帖子。这可能吗?

1 个答案:

答案 0 :(得分:1)

我认为你必须使用date_query。你可以这样做。

'date_query'    => array(
    'column'  => 'post_date',
    'after'   => '- 1 days'
)