Skip to content

Instantly share code, notes, and snippets.

@bogdan-mainwp
Last active December 6, 2018 14:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogdan-mainwp/43b11bf4ee696e3fbdee29d8ab8d2c2b to your computer and use it in GitHub Desktop.
Save bogdan-mainwp/43b11bf4ee696e3fbdee29d8ab8d2c2b to your computer and use it in GitHub Desktop.
Custom snippet for renaming the MainWP Dashboard WP Admin menu header
<?php
// Add the following code snippet to the functions.php file of the MainWP Customisations plugin
// Download MainWP Customisations here: https://github.com/mainwp/mainwp-customisations
// More about the plugin: https://mainwp.com/mainwp-customisations/
add_action( 'admin_head', 'mycustom_menu_admin_head' );
function mycustom_menu_admin_head() {
global $menu;
foreach( $menu as &$item ) {
if ( $item[2] == 'mainwp_tab' ) {
$item[0] = 'Demo Header';
break;
}
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment