Skip to content

Instantly share code, notes, and snippets.

@seafarer
Created July 24, 2013 02:46
Show Gist options
  • Select an option

  • Save seafarer/6067732 to your computer and use it in GitHub Desktop.

Select an option

Save seafarer/6067732 to your computer and use it in GitHub Desktop.
Change 'posts' to 'blog' in wordpress admin
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = 'Blog';
$submenu['edit.php'][5][0] = 'Blog Posts';
$submenu['edit.php'][10][0] = 'Add Blog Post';
echo '';
}
add_action( 'admin_menu', 'change_post_menu_label' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment