Skip to content

Instantly share code, notes, and snippets.

@imknight
Last active December 23, 2015 00:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imknight/6552491 to your computer and use it in GitHub Desktop.
Save imknight/6552491 to your computer and use it in GitHub Desktop.
Sort the posts order in page
add_filter('pre_get_posts', 'pre_get_posts_hook' );
function pre_get_posts_hook($wp_query) {
if (is_page())
{
$wp_query->set( 'orderby', 'title' );
$wp_query->set( 'order', 'ASC' );
return $wp_query;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment