• Hi,

    I added the code below to hide admin bar for non amdins, but it doesn’t work.
    I turned off all the plugins, but it change nothing. I also tested plugins to hide admin bar and it doesn’t work neither.

    add_action(‘after_setup_theme’, ‘remove_admin_bar’);

    function remove_admin_bar() {
    if (!current_user_can(‘administrator’) && !is_admin()) {
    show_admin_bar(false);
    }
    }

    I don’t understand why I cannot hide it :/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)

The topic ‘Impossible to hide admin bar’ is closed to new replies.