How to Hide the "ZZAZZ" Admin Menu

function plt_hide_kunato_ai_menus() {
	//Hide the "ZZAZZ" menu.
	remove_menu_page('kunato_options');
}

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

Where do I put this code?