How to Hide the "If Menu" Admin Menu

function plt_hide_if_menu_menus() {
	//Hide the "Appearance → If Menu" menu.
	remove_submenu_page('themes.php', 'if-menu');
}

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

Where do I put this code?