How to Hide the "Import Feed" Admin Menu

function plt_hide_import_xml_feed_menus() {
	//Hide the "Settings → Import Feed" menu.
	remove_submenu_page('options-general.php', 'moove-importer');
}

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

Where do I put this code?