Skip to content

Instantly share code, notes, and snippets.

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