Definition:
function show_admin_bar( $show ) {}
Set 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.
Parameters
- bool $show: Whether to allow the admin bar to show.
Source code
function show_admin_bar( $show ) { global $show_admin_bar; $show_admin_bar = (bool) $show; }
10286
No comments yet... Be the first to leave a reply!