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