Skip to content

Instantly share code, notes, and snippets.

@thefuxia
Last active August 5, 2017 08:15
Show Gist options
  • Select an option

  • Save thefuxia/2946888 to your computer and use it in GitHub Desktop.

Select an option

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