我正在使用WooCommerce 我正试图按价格筛选我的产品。我的问题是meta_key
只考虑正常价格,不考虑销售价格。
因此,如果产品正在销售,我的过滤器会忽略销售价格,并且所有产品都是按正常价格订购的。
我有没有办法按正常价格和销售价格订购产品?任何帮助都将不胜感激!
$args = array(
\'post_type\' => \'product\',
\'post_status\' => \'publish\',
\'posts_per_page\' => $posts_per_page,
\'taxonomy\' => \'product_cat\',
\'s\' => $search_term,
\'orderby\' => \'meta_value_num\',
\'order\' => \'DESC\',
\'meta_key\' => \'_price\',
);