每个人: 我想问一下,如果有一种方法(自定义编码或插件)隐藏没有价格或价格为0的产品?
答案 0 :(得分:0)
//Put this code in functions.php file
add_action( 'woocommerce_product_query', 'themelocation_product_query' );
function themelocation_product_query( $q ){
$meta_query = $q->get( 'meta_query' );
$meta_query[] = array(
'key' => '_price',
'value' => 0,
'compare' => '>'
);
$q->set( 'meta_query', $meta_query );
}