How to Hide the "Import / Export articles" Admin Menu

function plt_hide_facem_web_import_export_articles_menus() {
	//Hide the "Settings → Import / Export articles" menu.
	remove_submenu_page('options-general.php', 'faceweim-settings');
}

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

Where do I put this code?