mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
7 lines
175 B
Text
7 lines
175 B
Text
function wp_hide_admin_bar( $show ) {
|
|
if ( ! current_user_can( 'administrator' ) ) {
|
|
return false;
|
|
}
|
|
return $show;
|
|
}
|
|
add_filter( 'show_admin_bar', 'wp_hide_admin_bar' );
|