Skip to main content

Remove WP Dashboard bar

The wordpress dashboard bar should be hidden/removed/unaccessible to most folks if they view the main URL of the site. For example:

If I have a main website and have the community at www.mysite.com/community and they visit www.mysite.com while logged into the community, it shows the wordpress bar. I would like to remove that from community users.

Shahjahan Jewel

This is the php code you may use:

add_filter('show_admin_bar', '__return_false');

Jeff Brigman

Shahjahan JewelΒ thank you sir, worked perfectly.

Carlos Tabora

Shahjahan JewelΒ Where do I put that code? What file?

Ryk Melck

Carlos TaboraΒ it’s custom function. There are a few options.

  1. Add it to your child theme custom function.php
  2. Use a code snippet plugin. I recommend Fluent Snippets.

Jeff Brigman

Ryk MelckΒ yep, I used the snippet plugin I had installed.