Skip to content

Instantly share code, notes, and snippets.

@digitalhydra
Created December 1, 2017 22:56
Show Gist options
  • Save digitalhydra/d2f122e8a0dc4385a3b3e769b07691ea to your computer and use it in GitHub Desktop.
Save digitalhydra/d2f122e8a0dc4385a3b3e769b07691ea to your computer and use it in GitHub Desktop.
ordenar busqueda de wordpress por parametro
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