Skip to content

Instantly share code, notes, and snippets.

@Dinamiko
Last active August 29, 2015 14:13
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 Dinamiko/791589bf2bd0658adfaa to your computer and use it in GitHub Desktop.
Save Dinamiko/791589bf2bd0658adfaa to your computer and use it in GitHub Desktop.
changes default menu_name to Documents in the admin
function custom_docu_doc_post_type_labels( $docu_labels ) {
$docu_labels['menu_name'] = __('Documents', 'my-text-domain');
return $docu_labels;
}
add_filter( 'docu_doc_post_type_labels', 'custom_docu_doc_post_type_labels' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment