Created
December 1, 2017 22:56
-
-
Save digitalhydra/d2f122e8a0dc4385a3b3e769b07691ea to your computer and use it in GitHub Desktop.
ordenar busqueda de wordpress por parametro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function my_search_query( $query ) { | |
// not an admin page and is the main query | |
if ( !is_admin() && $query->is_main_query() ) { | |
if ( is_search() ) { | |
$query->set( 'orderby', 'date' ); | |
} | |
} | |
} | |
add_action( 'pre_get_posts', 'my_search_query' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment