Skip to content

Instantly share code, notes, and snippets.

@kalenjohnson
Created September 30, 2014 08:12
Show Gist options
  • Save kalenjohnson/53fe117abeba00a943d0 to your computer and use it in GitHub Desktop.
Save kalenjohnson/53fe117abeba00a943d0 to your computer and use it in GitHub Desktop.
add_action('pre_get_posts', function( $query ) {
if ( ! is_admin() && is_archive('employee') && $query->is_main_query() ) {
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
}
return $query;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment