Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Show BP Admin Bar while in wp-admin ONLY and hide it in the rest of the site.


pcwriter
Participant

@pcwriter

@ri-kun

Add the following snippet to your theme’s functions.php file:

`function remove_adminbar_from_mainsite() {
if(‘BP_ROOT_BLOG’)
remove_action( ‘wp_footer’, ‘bp_core_admin_bar’, 8 );
}
add_action(‘wp’, ‘remove_adminbar_from_mainsite’);`

Skip to toolbar