How to Hide the "Formitable" Admin Menu

function plt_hide_formitable_development_kit_menus() {
	//Hide the "Settings → Formitable" menu.
	remove_submenu_page('options-general.php', 'Formitable');
}

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

Where do I put this code?