Remove Menu(S) From Wordpress Toolbar

kampester
Veteran
Just Getting Started

Member    Likes (0)

Hi All

I need help to get a custom function working to will remove the 2 default menus in the users Toolbar.

I found this code online and placed it in my themes child folder:
(wp-content/themes/bp-social-child/custom-functions.php
)

// modifies wordpress admin toolbar menuj
function remove_admin_bar_links() {
	global $wp_admin_bar; >
	$wp_admin_bar->remove_menu('blogs-menu');
	$wp_admin_bar->remove_menu('account-menu'); }
add_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );

Could not get the above function to work ... hoping someone can point me in the right direction.,

Thanks

Erik