Skip to content

Instantly share code, notes, and snippets.

@thefuxia
Last active August 5, 2017 08:15
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thefuxia/2946888 to your computer and use it in GitHub Desktop.
Save thefuxia/2946888 to your computer and use it in GitHub Desktop.
Remove WP Menu From Tool Bar
<?php # -*- coding: utf-8 -*-
/**
* Plugin Name: Remove WP Menu From Tool Bar
*/
add_action( 'add_admin_bar_menus', function(){
remove_action( 'admin_bar_menu', 'wp_admin_bar_wp_menu' );
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment