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');
可進行測試使用。