Site icon Hip-Hop Website Design and Development

Remove admin sub menu from child theme

I’ve created a child theme of TwentyTwenty One and in the child’s function file I am trying to remove admin menu option “widgets”. I’ve tried a few things but had no luck, any suggestions?

   add_action( "admin_menu", "ls_remove_menu_items", 999 );
  function ls_remove_menu_items() {
     remove_submenu_page( "themes.php", "widgets.php" ); 
  }