کپسول قهوه
نمایش 82–90 از 431 نتیجهمرتبسازی بر اساس جدیدترین
add_filter('woocommerce_product_query_order_by_relevance_sql', function($sql) { global $wpdb; return "ORDER BY {$wpdb->posts}.menu_order DESC, {$wpdb->posts}.post_date DESC"; }, 100); add_filter('woocommerce_get_catalog_ordering_args', function($args) { // Change default sort to 'menu_order' (which we've modified above) if (!isset($_GET['orderby']) || empty($_GET['orderby'])) { $args['orderby'] = 'menu_order'; $args['order'] = 'DESC'; } return $args; }, 100); // Alternative approach using post__in parameter add_filter('woocommerce_product_query', function($query) { // Get all product IDs $products = get_posts(array( 'post_type' => 'product', 'numberposts' => -1, 'fields' => 'ids', 'orderby' => 'date', 'order' => 'DESC' )); // Set the product order if (!empty($products)) { $query->set('post__in', $products); $query->set('orderby', 'post__in'); } return $query; }, 100);
نمایش 82–90 از 431 نتیجهمرتبسازی بر اساس جدیدترین