Codex tools: Log in
Contents |
Set the display status of the Toolbar for the front side of your website (you cannot turn off the toolbar on the WordPress dashboard).
Note: The Admin Bar is replaced with the Toolbar since WordPress Version 3.3.
<?php show_admin_bar( $bool ); ?>
none
This function should be called immediately upon plugin load or placed in the theme's functions.php file.
This function will also affect the display of the Toolbar in the dashboard for WordPress versions prior to Version 3.3.
show_admin_bar( false );
Placing the above line of code in theme's function.php file will prevent the Toolbar from rendering on the front end of your site.
You can also determine for which users the admin bar is shown. For example the following lines will only display the admin bar for users with administrative privileges.
if ( ! current_user_can( 'manage_options' ) ) {
show_admin_bar( false );
}
show_admin_bar() is located in wp-includes/admin-bar.php.