如何显示过去7天的信息。这是我的代码。
$ query_args = array(
'paged' => $paged,
'posts_per_page' => '10',
'cat' => $cat,
'order' => 'id',
'post_type' => 'currencies',
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => '$category',
'terms' => $child->term_id,
),
),
);
$blog_posts = new WP_Query($query_args);