-
پیانو دیجیتال کورزویل مدل M70 sr
58,000,000 تومان -
سه تار محمدی الگو هاشمی
53,000,000 تومان -
کاخن رومی مدل DESIERTA (فلامنکو)
4,480,000 تومان -
نی صنایعی دو مهر
850,000 تومان -
نی صنایعی یک مهر
640,000 تومان
add_action( 'woocommerce_product_query', 'move_products_without_prices_to_end' ); function move_products_without_prices_to_end( $q ) { if ( $q->is_main_query() && ! is_admin() && is_shop() ) { $meta_query = $q->get( 'meta_query' ); $meta_query[] = array( 'relation' => 'OR', array( 'key' => '_price', 'compare' => 'EXISTS' ), array( 'key' => '_price', 'compare' => 'NOT EXISTS' ) ); $q->set( 'meta_query', $meta_query ); $q->set( 'orderby', 'meta_value_num' ); $q->set( 'meta_key', '_price' ); $q->set( 'order', 'ASC' ); } }