【发布时间】:2017-09-04 05:28:24
【问题描述】:
我将查询限制为使用 6 个月前的显示帖子,效果很好。
但我需要它基于post_meta 表中的日期,而不是“post_date_gmt”。
在我的例子中,我的 meta_keys 被称为 payment_date 并且值当然是像 31-10-2016 这样的日期。
$months_ago = 6;
$args = array(
'date_query' => array(
array(
'column' => 'post_date_gmt',
'after' => $months_ago . ' months ago',
)
),
'numberposts' => -1
);
【问题讨论】:
标签: php arrays wordpress date strtotime