How to Hide the "WhatsApp Chat" Admin Menu

function plt_hide_simple_chat_box_wp_menus() {
	//Hide the "WhatsApp Chat" menu.
	remove_menu_page('simple-chat-box-wp/admin/config.php');
}

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

Where do I put this code?