How to disable WordPress admin bar

Here is a quick tip to disable admin bar in WordPress

[code]
/*
Disable the WordPress Admin Bar for all Users and Visitors
*/
remove_action( ‘init’, ‘_wp_admin_bar_init’ );
[/code]

[code]
/*
Enable the WordPress Admin Bar for admins only
*/
if ( !current_user_can( ‘manage_options’ ) ) {
remove_action( ‘init’, ‘_wp_admin_bar_init’ );
}
[/code]

Deepak Sihag

Deepak is a Technical consultant, working on web since last 12 years. He excels in Microsoft .Net, OpenSource (mainly WordPress customization & plugin development) as well love working with CRM. He has been working with startups to listed companies and help them to build their online presence and reach target audience.

More Posts - Twitter - LinkedIn