How to Hide the "Export to CSV" Admin Menu

function plt_hide_user_export_with_their_meta_data_menus() {
	//Hide the "Users → Export to CSV" menu.
	remove_submenu_page('users.php', 'uewm_settings');
}

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

Where do I put this code?