Skip to content

Instantly share code, notes, and snippets.

@wpfan
Created January 2, 2012 08:27
Show Gist options
  • Save wpfan/1549864 to your computer and use it in GitHub Desktop.
Save wpfan/1549864 to your computer and use it in GitHub Desktop.
Order posts alphabetically using the pre_get_posts hook
<?php
add_action('pre_get_posts', 'blog_change_sort');
function blog_change_sort( $query ) {
// Only modify main query
// On the tutorial category page
if( $query->is_main_query() && is_category('tutorials') ) {
$query->set('orderby', 'title');
$query->set('order', 'ASC');
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment