我想您指的是可能会在网页顶部出现的黑条。这就是所谓的“工具栏”。然而,它的早期版本称为“管理栏”,代码中仍然使用该名称。若要从不显示,请将此添加到functions.php
function my_function_admin_bar(){
return false;
}
add_filter( \'show_admin_bar\' , \'my_function_admin_bar\');
或者只显示管理员栏
function my_function_admin_bar($content) {
return ( current_user_can( \'administrator\' ) ) ? $content : false;
}
add_filter( \'show_admin_bar\' , \'my_function_admin_bar\');
(或在插件中类似。)
看见the Codex.
(此外,您应该能够使用wp_signon() 如果您愿意的话。)