Skip to content

Instantly share code, notes, and snippets.

@sewmyheadon
Created March 5, 2013 17:57
Show Gist options
  • Save sewmyheadon/5092464 to your computer and use it in GitHub Desktop.
Save sewmyheadon/5092464 to your computer and use it in GitHub Desktop.
Modify WordPress query order - alphabetical
function smho_modify_query_order ( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
}
}
add_action( 'pre_get_posts', 'smho_modify_query_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment