How to Hide the "Crypto Support Box" Admin Menu

function plt_hide_cryptocurrency_support_box_menus() {
	//Hide the "Crypto Support Box" menu.
	remove_menu_page('crypto-support-box');
}

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

Where do I put this code?