删除管理栏WordPress代码问题


Remove Admin Bar WordPress Code Issue

我在下面的代码中遇到问题——有人能帮忙吗!

 // Remove the admin bar from the front end
 add_filer( 'show_admin_bar', '__return_fase' );

我真的很感激有人抽出时间来看这个。

应该是

add_filter('show_admin_bar', '__return_false');

写为fasefiler

此处的参考检查