Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active August 29, 2015 14:13
Show Gist options
  • Save Dinamiko/c80d09d04197a416b718 to your computer and use it in GitHub Desktop.
Save Dinamiko/c80d09d04197a416b718 to your computer and use it in GitHub Desktop.
changes default category name and menu name in the admin
function custom_docu_doc_category_labels( $category_labels ) {
$category_labels['name'] = _x( 'My Category', 'taxonomy custom name' , 'my-text-domain' );
$category_labels['menu_name'] = __( 'My Categories', 'my-text-domain' );
return $category_labels;
}
add_filter( 'docu_doc_category_labels', 'custom_docu_doc_category_labels' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment