How to Hide the "RGPD Fields" Admin Menu

function plt_hide_rgpd_fields_registration_form_menus() {
	//Hide the "RGPD Fields" menu.
	remove_menu_page('rgpd-frf');
}

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

Where do I put this code?