dongpeng8994 2013-11-10 05:09
浏览 6

隐藏管理栏功能

Im trying to enable the admin bar on all pages but one titled "Registration" on my Wordpress site..The function below isnt working.. Any ideas? Thanks!!

show_admin_bar( true );

if (is_page( 'registration' )) {

  show_admin_bar( false );
}
  • 写回答

4条回答 默认 最新

  • dousao2186 2013-11-10 05:24
    关注

    Try adding this little piece of code in to the page:

    add_filter('show_admin_bar', '__return_false');
    
    评论

报告相同问题?