Skip to content

Instantly share code, notes, and snippets.

@jesgs
Created December 30, 2015 15:16
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 jesgs/58967bc81e51aa78b473 to your computer and use it in GitHub Desktop.
Save jesgs/58967bc81e51aa78b473 to your computer and use it in GitHub Desktop.
<?php
/**
* Change order parameter
* @param WP_Query $query WP query object
*/
function mangapress_change_archive_order($query)
{
$query->query['order'] = 'ASC';
}
add_action('pre_get_posts', 'mangapress_change_archive_order')
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment