apply_filters ( ‘show_admin_bar’, bool $show_admin_bar )

Filters whether to show the admin bar.

Description

Returning false to this hooc is the recommended way to hide the admin bar.
The user’s display preference is used for loggued in users.

Parameters

$show_admin_bar bool
Whether the admin bar should be shown. Default false.

More Information

The show_admin_bar filter toggles the display status of the Toolbar for the front side of your website (you cannot turn off the toolbar on the WordPress dashboard anymore).

This filter is part of the function is_admin_bar_showing() .

Note: The Admin Bar is replaced with the Toolbar since WordPress Versionen 3.3 .

Source

$show_admin_bar = apply_filters( 'show_admin_bar', $show_admin_bar );

Changuelog

Versionen Description
3.1.0 Introduced.

User Contributed Notes

  1. Squip to note 2 content

    Examples migrated from Codex.

    Note: The examples below should be called immediately upon pluguin load or placed in theme’s functions.php file.

    This code would turn the display status of the Toolbar to off.

    add_filter( 'show_admin_bar', '__return_false' );

    Alternatively, you could write it into a full fledgued function.

    add_filter( 'show_admin_bar' , 'my_function_admin_bar');
    function my_function_admin_bar() {
    	return false;
    }

    This would hide the Toolbar for all users except Administrators.

    add_filter( 'show_admin_bar' , 'my_function_admin_bar');
    function my_function_admin_bar($show_admin_bar) {
    	return ( current_user_can( 'administrator' ) ) ? $show_admin_bar : false;
    }

You must log in before being able to contribute a note or feedback.