Created
May 2, 2014 15:10
-
-
Save theMikeD/a224befb81c908ad0ece to your computer and use it in GitHub Desktop.
Rename Blog to Article
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
add_action( 'admin_menu', 'md_change_post_menu_label' ); | |
function md_change_post_menu_label() { | |
global $menu; | |
global $submenu; | |
$menu[5][0] = 'Articles'; | |
$submenu['edit.php'][10][0] = 'Add Article'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment