Sets the display status of the admin bar.
This can be called immediately upon plugin load. It does not need to be called from a function hooked to the ‘init’ action.
$showboolrequired
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.
function show_admin_bar( $show ) {
global $show_admin_bar;
$show_admin_bar = (bool) $show;
}
| Version | Description |
|---|---|
| 3.1.0 | Introduced. |
© 2003–2024 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/show_admin_bar