Skip to content

Instantly share code, notes, and snippets.

@seafarer
Created January 2, 2014 21:37
Show Gist options
  • Select an option

  • Save seafarer/8227408 to your computer and use it in GitHub Desktop.

Select an option

Save seafarer/8227408 to your computer and use it in GitHub Desktop.
category sort on category archive template
<?php
global $wp_query;
query_posts(
array_merge(
$wp_query->query,
array(
'order' => 'ASC',
'orderby'=>'title',
'posts_per_page' => 20,
)
)
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment