How to Hide the "3CX Live Chat" Admin Menu

function plt_hide_wp_live_chat_support_menus() {
	//Hide the "3CX Live Chat" menu.
	remove_menu_page('wplc_options');
}

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

Where do I put this code?