How to Hide HTML5 Webcam/Screen/Mic Recorder for Video Comments and Forms Admin Menus

function plt_hide_video_comments_webcam_recorder_menus() {
	//Hide the "Form Recorder" menu.
	remove_menu_page('irecorder');
	//Hide the "Form Recorder → Form Recorder" menu.
	remove_submenu_page('irecorder', 'irecorder');
	//Hide the "Form Recorder → Settings" menu.
	remove_submenu_page('irecorder', 'irecorder-settings');
}

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

Where do I put this code?