How to Hide Formidable Forms Admin Menus

function plt_hide_formidable_menus() {
	//Hide "Appearance → Forms".
	remove_submenu_page('themes.php', 'formidable-styles2');

	//Hide "Formidable 3".
	remove_menu_page('formidable');
	//Hide "Formidable 3 → Dashboard 3".
	remove_submenu_page('formidable', 'formidable-dashboard');
	//Hide "Formidable 3 → Forms (Lite)".
	remove_submenu_page('formidable', 'formidable');
	//Hide "Formidable 3 → Entries".
	remove_submenu_page('formidable', 'formidable-entries');
	//Hide "Formidable 3 → Views".
	remove_submenu_page('formidable', 'formidable-views');
	//Hide "Formidable 3 → Styles".
	remove_submenu_page('formidable', 'formidable-styles');
	//Hide "Formidable 3 → Applications".
	remove_submenu_page('formidable', 'formidable-applications');
	//Hide "Formidable 3 → Form Templates".
	remove_submenu_page('formidable', 'formidable-form-templates');
	//Hide "Formidable 3 → PaymentsNEW".
	remove_submenu_page('formidable', 'formidable-payments');
	//Hide "Formidable 3 → Import/Export".
	remove_submenu_page('formidable', 'formidable-import');
	//Hide "Formidable 3 → Global Settings".
	remove_submenu_page('formidable', 'formidable-settings');
	//Hide "Formidable 3 → Add-Ons".
	remove_submenu_page('formidable', 'formidable-addons');
	//Hide "Formidable 3 → Upgrade".
	remove_submenu_page('formidable', 'formidable-pro-upgrade');
	//Hide "Formidable 3 → SMTP".
	remove_submenu_page('formidable', 'formidable-smtp');
}

add_action('admin_menu', 'plt_hide_formidable_menus', 1000);

Where do I put this code?