【发布时间】:2015-10-07 16:28:46
【问题描述】:
从这个问题
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'
)
)
);
【问题讨论】:
标签: wordpress woocommerce woothemes