function hide_products_without_price( $query ) { if ( ! is_admin() && $query->is_main_query() && ( is_shop() || is_product_category() || is_product() ) ) { // مخفی کردن محصولاتی که قیمت ندارند $meta_query = $query->get( 'meta_query' ); $meta_query[] = array( 'key' => '_price', 'value' => '', 'compare' => '!=', ); $query->set( 'meta_query', $meta_query ); } } add_action( 'pre_get_posts', 'hide_products_without_price' );