sorting by menu order doesn’t work
-
I am try to sort all archive pages bu menu_order using the following code
add_action( 'pre_get_posts', 'my_change_sort_order'); function my_change_sort_order($query){ if(is_archive()): //If you wanted it for the archive of a custom post type use: is_post_type_archive( $post_type ) //Set the order ASC or DESC $query->set( 'order', 'ASC' ); //Set the orderby $query->set( 'orderby', 'menu_order' ); endif; };
Normally it works fine on all pages
but ..
on search pages that default sorting doesn’t work..Can you please help
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘sorting by menu order doesn’t work’ is closed to new replies.