buddypress 預設的會給網站未登入狀態顯示一個黑色的工具欄,一般情況下是管理員才有的,這個是 WordPress 提供的預設功能。
新增到子主題的 functions.php 檔案裡
/* remove admin bar features*/
add_filter( 'show_admin_bar', '__return_false' );
/* remove admin bar options for users */
remove_action( 'personal_options', '_admin_bar_preferences' );
或者是以下程式碼
function splen_remove_admin_bar() {
if( !is_super_admin() )
add_filter( 'show_admin_bar', '__return_false' );
}
add_action('wp', 'splen_remove_admin_bar');
可進行測試使用。