Woocommerce查询Scaduled销售价格

时间:2017-06-02 15:44:37

标签: wordpress woocommerce

我的查询仅显示销售产品。

但我正在寻找只显示预定产品的查询,并且不会显示销售时间已过期的产品。

这是我的代码:

$args = array(
    'post_type'      => 'product',
    'order'          => 'ASC',
    'paged'          => $paged,
    'meta_query'     => array(
        array(
            'key'           => '_sale_price',
            'value'         => 0,
            'compare'       => '>',
            'type'          => 'numeric'
        )
    )
);

query_posts( $args );

怎么做?

0 个答案:

没有答案