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
171 B
Text
7 lines
171 B
Text
add_action('after_setup_theme', 'remove_admin_bar');
|
|
|
|
function remove_admin_bar() {
|
|
if (!current_user_can('administrator') && !is_admin()) {
|
|
show_admin_bar(false);
|
|
}
|
|
}
|