Menu Close
How Can We Help?
You are here:
Print

Remove WordPress from Top Admin Bar

Locate the file ADMIN-BAR.PHP in WP-ADMIN folder, search for wp_admin_bar_wp_menu and insert a “return false;” right at the begin of the function, like this:

function wp_admin_bar_wp_menu( $wp_admin_bar ) {
  return false;

Comments are welcome.