Last active
August 29, 2015 14:13
-
-
Save Dinamiko/c80d09d04197a416b718 to your computer and use it in GitHub Desktop.
changes default category name and menu name in the admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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