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.
This is the php code you may use:
add_filter('show_admin_bar', '__return_false');
Shahjahan JewelΒ thank you sir, worked perfectly.
Shahjahan JewelΒ Where do I put that code? What file?
Carlos TaboraΒ itβs custom function. There are a few options.
- Add it to your child theme custom function.php
- Use a code snippet plugin. I recommend Fluent Snippets.
Ryk MelckΒ yep, I used the snippet plugin I had installed.