How to Hide Team Section - Block Admin Menus

function plt_hide_team_section_menus() {
	//Hide "Team Section".
	remove_menu_page('edit.php?post_type=tsb');
	//Hide "Team Section → Team Section".
	remove_submenu_page('edit.php?post_type=tsb', 'edit.php?post_type=tsb');
	//Hide "Team Section → Help And Demo".
	remove_submenu_page('edit.php?post_type=tsb', 'team-section-dashboard');
	//Hide "Team Section → Add New ShortCode".
	remove_submenu_page('edit.php?post_type=tsb', 'post-new.php?post_type=tsb');
}

add_action('admin_menu', 'plt_hide_team_section_menus', 11);

Where do I put this code?