我想过滤WP_Query以检索具有超过15分钟特定状态的所有woocommerce订单(post_type = shop_order)
。
即。所有上次修改的帖子(现在 - 15分钟)//希望我很清楚。
在我尝试过的地方
function filter_where($where = '') {
//posts in the last 15 minutes
$where .= " AND post_modified > '" . date('Y-m-d', strtotime('INTERVAL 15 MINUTE')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
$args = array(
'post_type' => 'shop_order',
'post_status' => 'publish',
'posts_per_page' => 10,
'tax_query' => array(
array(
'taxonomy' => 'shop_order_status',
'field' => 'slug',
'terms' => array('completed')
)
)
);
$loop = new WP_Query( $args );
while ( $loop->have_posts() ) : $loop->the_post();
$order_id = $loop->post->ID;
$order = new WC_Order($order_id);
print_r("<pre>");
print_r($order);
print_r("</pre>");
endwhile;
然而,返回所有记录,似乎必须修改$ where查询,我该如何实现呢?
答案 0 :(得分:2)
尝试更改日期('Y-m-d',strtotime('INTERVAL 15 MINUTE'))到目前为止('Y-m-d H:i:s',strtotime(' - 15分钟'))
function filter_where($where = ''){
//posts in the last 15 minutes
$where .= " AND post_modified > '" . date('Y-m-d H:i:s', strtotime('-15 minutes')) . "'";
return $where;
}
add_filter('posts_where', 'filter_where');
答案 1 :(得分:2)
您需要过滤posts_where
吗?你不能只使用date query parameters吗?在您的情况下,特别是before
。
$args = array(
'date_query' => array(
array(
'before' => '15 minutes ago'
'inclusive' => true,
),
),
'posts_per_page' => -1,
);
$query = new WP_Query( $args );
我现在无法测试,所以无法验证它是否可行。如果您要修改存档,那么您绝对应该通过pre_get_posts
调整查询,而不是创建新查询。