WooCommerce内のすべての商品を、特定の日付以降の人気(総売上)から注文したいと考えています。WPクエリ注文WooCommerce商品の合計売上高から
$args = array(
'post_type' => 'products',
'posts_per_page' => 2000,
'orderby' => 'meta_value_num',
'meta_key' => 'total_sales',
'order' => 'desc',
'date_query' => array(
'column' => 'order_date',
array(
'after' => 'April 1st 2017',
),
),
);
$products = new WP_Query($args);
if ($products->have_posts()) {
while ($products->have_posts()) : $products->the_post();
the_title();
echo '<br>';
endwhile;
}
このクエリは、April 1st 2017
以来April 1st 2017
、合計ではなく、製品の販売以降に追加された人気順すべての製品を返します。
下記の私の答えを参照してください、私は私のポストを更新代わりにproduct' –