//*********************************************************************
//*********************************************************************
//********** REMOVE TOP BLACK WORDPRESS BAR FOR NORMAL USERS **********
//*********************************************************************
//*********************************************************************
add_filter( 'show_admin_bar', 'odac_user_account_show_admin_bar' );
function odac_user_account_show_admin_bar()
{
//Remove for all users other than admin
if (!current_user_can('administrator'))
{
show_admin_bar(False);
return(False);
}
else
{
show_admin_bar(True);
return(True); //You need to return true otherwise the admin bar will vanish for admins when viewing the site
}
}
