您应该检查页面是否为主页和/或首页。is_front_page()
查看网站首页(博客帖子索引或静态页面)时返回true,is_home()
查看博客文章索引时返回true。尝试如下操作,
if (!is_home() && !is_front_page()){
add_filter(\'show_admin_bar\', \'__return_false\');
}
或
if (!is_home()){
add_filter(\'show_admin_bar\', \'__return_false\');
}