Skip to content

Instantly share code, notes, and snippets.

@peterhartree
Created August 10, 2014 14:24
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 peterhartree/6228a6fa163eea4ea0fa to your computer and use it in GitHub Desktop.
Save peterhartree/6228a6fa163eea4ea0fa to your computer and use it in GitHub Desktop.
WordPress: Capitalise term title
/**
* Capitalises the first letter of term title for display.
*/
function capitalise_term_titles( $term_obj ) {
$term_obj->name = ucfirst($term_obj->name);
return $term_obj;
}
add_filter( 'get_term', 'capitalise_term_titles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment