mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
12 lines
357 B
Text
12 lines
357 B
Text
add_action( 'woocommerce_product_query', 'wc_hide_products_0_price', 9999, 2 );
|
|
|
|
function wc_hide_products_0_price( $q, $query ) {
|
|
if ( is_admin() ) return;
|
|
$meta_query = $q->get( 'meta_query');
|
|
$meta_query[] = array(
|
|
'key' => '_regular_price',
|
|
'value' => 0,
|
|
'compare' => '>',
|
|
);
|
|
$q->set( 'meta_query', $meta_query );
|
|
}
|