Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mjangda
Created October 26, 2012 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjangda/3960911 to your computer and use it in GitHub Desktop.
Save mjangda/3960911 to your computer and use it in GitHub Desktop.
Disables WordPress relevancy search and defaults order to chronological
<?php
add_filter( 'posts_search_orderby', function( $search_orderby, $query ) {
return '';
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment