Skip to content

Instantly share code, notes, and snippets.

@theMikeD
Created May 2, 2014 15:10
Show Gist options
  • Save theMikeD/a224befb81c908ad0ece to your computer and use it in GitHub Desktop.
Save theMikeD/a224befb81c908ad0ece to your computer and use it in GitHub Desktop.
Rename Blog to Article
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