Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Change the order of SearchWP results
<?php
function my_searchwp_search_query_order() {
return 'ASC';
}
add_filter( 'searchwp_search_query_order', 'my_searchwp_search_query_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment