Skip to main content

Sort search results by post order

An example of how to sort search results by the page attribute "Order" value

img

Sort search results by the page attribute menu_order
add_filter( 'babe_get_posts_sort_arg', 'customtheme_babe_get_posts_sort_arg', 10, 2 );
function customtheme_babe_get_posts_sort_arg(
string $sort_option,
array $search_request_args
): string
{
if ( isset($search_request_args['request_search_results']) ){
return 'posts.menu_order';
}
return $sort_option;
}