Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Caseproof

    (@caseproof)

    Hi @laurpm

    Try to add this code snippet at the end of your theme’s functions.php file:

    add_action('admin_menu', function() {
      if(!current_user_can('administrator')){
        remove_menu_page( 'snippets' );
      }
    }, 999);

    This should remove Snippets menu for all roles except for Administrator.

    I hope that helps.

    Thread Starter laurlau

    (@laurpm)

    yeeeey thank you! it works!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide Snippets from left bar’ is closed to new replies.