从这个问题
WooCommerce: Display ONLY on-sale products in Shop我试图展示那些打折的产品。但每当它显示所有产品on_sale
时。
我还尝试了_sale_price
元键。但无法理解我该如何解决我的问题。
我的项目输出来自我的代码
我的$args
变量
$args = array(
'post_type' => 'product',
'order' => 'ASC',
'meta_query' => array(
array(
'key' => '_sale_price',
'value' => 0,
'compare' => '>',
'type' => 'numeric'
)
)
);
我也试过下面的代码。但结果相同
$args = array(
'post_type' => 'product',
'posts_per_page' => 8,
'meta_query' => array(
'relation' => 'OR',
array( // Simple products type
'key' => '_sale_price',
'value' => 0,
'compare' => '>',
'type' => 'numeric'
),
array( // Variable products type
'key' => '_min_variation_sale_price',
'value' => 0,
'compare' => '>',
'type' => 'numeric'
)
)
);