Skip to content

Instantly share code, notes, and snippets.

@JRMorris77
Last active March 22, 2017 07:04
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 JRMorris77/d04a01351ba0cf15be2e3cf7352568ca to your computer and use it in GitHub Desktop.
Save JRMorris77/d04a01351ba0cf15be2e3cf7352568ca to your computer and use it in GitHub Desktop.
<?php
/*
Plugin Name: Remove WordPress Admin Menu
Plugin URI: https://premium.wpmudev.org/support/
Description: A simple mu-plugin that removes the WordPress menu from the Admin menu.
Version: 0.0.1
Author: James Morris - WPMU DEV
Author URI: https://premium.wpmudev.org/profile/jrmorris77
Network: true
*/
add_action('admin_head', 'disable_wp_menu');
add_action('wp_head', 'disable_wp_menu');
function disable_wp_menu() {
echo '<style>
li#wp-admin-bar-wp-logo {
display: none;
}
</style>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment