Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active October 19, 2019 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save braddalton/af2a6e5fdad232e2ee6a to your computer and use it in GitHub Desktop.
Save braddalton/af2a6e5fdad232e2ee6a to your computer and use it in GitHub Desktop.
function change_category_order( $query ) {
if ( $query->is_category('8') && $query->is_main_query() ) {
$query->set( 'order', 'ASC' );
}
}
add_action( 'pre_get_posts', 'change_category_order' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment