Change admin bar to default:off

add_action("user_register", "set_user_admin_bar_false_by_default", 10, 1);
function set_user_admin_bar_false_by_default($user_id) {
    update_user_meta( $user_id, 'show_admin_bar_front', 'false' );
    update_user_meta( $user_id, 'show_admin_bar_admin', 'false' );
}

Place in theme functions file or you can make into a plugin.

Once user registers it will go and set the users admin bar prefs to false. The user can then, once logged in, set this to true.

Leave a Comment