Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created October 31, 2017 15:27
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 Shininglow/cf4de7ec027af67e88a01ed384de39e6 to your computer and use it in GitHub Desktop.
Save Shininglow/cf4de7ec027af67e88a01ed384de39e6 to your computer and use it in GitHub Desktop.
add_filter( 'cherry_projects_default_terms_args', 'my_rewrite_project_terms_args' );
function my_rewrite_project_terms_args( $args ) {
$args['orderby'] = 'name';
$args['order'] = 'ASC';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment