How to Hide Auto Alt Text Admin Menus

function plt_hide_auto_alt_text_menus() {
	//Hide the "Auto Alt Text" menu.
	remove_menu_page('auto-alt-text-options');
	//Hide the "Auto Alt Text → Auto Alt Text" menu.
	remove_submenu_page('auto-alt-text-options', 'auto-alt-text-options');
	//Hide the "Auto Alt Text → Error log" menu.
	remove_submenu_page('auto-alt-text-options', 'auto-alt-text-log');
}

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

Where do I put this code?