Skip to content

Instantly share code, notes, and snippets.

@Aeonexe
Last active May 19, 2018 17:51
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 Aeonexe/d59c12e688c72a5da257de178c619b5c to your computer and use it in GitHub Desktop.
Save Aeonexe/d59c12e688c72a5da257de178c619b5c to your computer and use it in GitHub Desktop.
Cambia labels en el menú de administración
/**
* Cambia labels en el menú de administrador
*/
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = 'Proyectos';
$submenu['user-edit.php'][5][0] = 'Proyectos';
$submenu['user-edit.php'][10][0] = 'Publicar';
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