WooCommerce:仅显示列表中的折扣产品

时间:2015-10-07 16:28:47

标签: wordpress wordpress-plugin woocommerce woothemes

从这个问题 WooCommerce: Display ONLY on-sale products in Shop我试图展示那些打折的产品。但每当它显示所有产品on_sale时。 我还尝试了_sale_price元键。但无法理解我该如何解决我的问题。 我的项目输出来自我的代码 enter image description here

我的$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'
    )
)
);

1 个答案:

答案 0 :(得分:1)

我解决了一些问题。当我从管理面板发布产品时,我错了。我的代码是对的。当我发布产品我设定价格而非正常价格。现在我删除了那些没有打折的产品销售价格。并将价格定在正常价格上。现在我的问题解决了。这是我的输出。 enter image description here

我在管理面板中的工作

enter image description here