How to Hide the "Consent Translations" Admin Menu

function plt_hide_cybokron_consent_manager_translations_yootheme_menus() {
	//Hide the "Consent Translations" menu.
	remove_menu_page('cybokron-consent-manager-translations-yootheme');
}

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

Where do I put this code?