Skip to content

Instantly share code, notes, and snippets.

@pippinsplugins
Created August 12, 2012 00:43
Show Gist options
  • Select an option

  • Save pippinsplugins/3328252 to your computer and use it in GitHub Desktop.

Select an option

Save pippinsplugins/3328252 to your computer and use it in GitHub Desktop.
function pw_change_archive_order( $query ) {
if( $query->is_main_query() && is_archive() ) {
$query->set('order', 'ASC');
}
}
add_action('pre_get_posts', 'pw_change_archive_order');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment