0

//Sort shop page
function c2_query_by_post_meta( $query ) {
 if (! is_admin() && $query->get( 'post_type' ) == 'product' && is_page('shop-now') ) {
     $query->set('orderby', 'meta_value_num');
        $query->set('meta_key', '_price');
        $query->set('order', 'ASC'); // Change to 'DESC' for high-to-low sorting
 }
}
add_action( 'pre_get_posts', 'c2_query_by_post_meta' );

Jagdish Sarma Asked question February 27, 2025
Add a Comment