-
پیانو دیجیتال کورزویل مدل M70 sr
58,000,000 تومان -
سه تار حسن زادخیل
19,890,000 تومان -
کاخن BH مدل BHC-R
8,499,000 تومان -
کاخن رومی مدل ROYAL (فلامنکو)
4,185,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' ); } }