How to Hide the "Mori Chatbot" Admin Menu

function plt_hide_dori_chatbot_menus() {
	//Hide the "Mori Chatbot" menu.
	remove_menu_page('dori-chatbot-settings');
}

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

Where do I put this code?