How to Hide the "Telegram Chat" Admin Menu

function plt_hide_wps_telegram_chat_menus() {
	//Hide the "Telegram Chat" menu.
	remove_menu_page('wps-telegram-chat');
}

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

Where do I put this code?