Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

How to Hide Clipchamp Admin Menus

function plt_hide_clipchamp_video_converter_video_uploader_and_webcam_recorder_menus() {
	//Hide "Settings → Clipchamp".
	remove_submenu_page('options-general.php', 'ccb_settings');

	//Hide "Clipchamp Videos".
	remove_menu_page('edit.php?post_type=clipchamp-video');
	//Hide "Clipchamp Videos → Clipchamp Videos".
	remove_submenu_page('edit.php?post_type=clipchamp-video', 'edit.php?post_type=clipchamp-video');
	//Hide "Clipchamp Videos → Add New".
	remove_submenu_page('edit.php?post_type=clipchamp-video', 'post-new.php?post_type=clipchamp-video');
	//Hide "Clipchamp Videos → Categories".
	remove_submenu_page('edit.php?post_type=clipchamp-video', 'edit-tags.php?taxonomy=category&post_type=clipchamp-video');
	//Hide "Clipchamp Videos → Tags".
	remove_submenu_page('edit.php?post_type=clipchamp-video', 'edit-tags.php?taxonomy=post_tag&post_type=clipchamp-video');
}

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

Where do I put this code?