문제

I need to show the Screen Option tab in WordPress for Admins only, and hide that tab for the rest of the users. How can I do that?

I found this: How to Hide the WordPress Screen Options Tab

function remove_screen_options_tab()
{
    return false;
}
add_filter('screen_options_show_screen', 'remove_screen_options_tab');

But it hides it for every user...

도움이 되었습니까?

해결책

Look for functions.php file, inside your theme folder, and add this code:

  function remove_screen_options_tab() {
       return current_user_can( 'manage_options' );
  }
  add_filter('screen_options_show_screen', 'remove_screen_options_tab');

An admin is the only one that can 'manage_options', so that should work.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top