How to Hide the "OpenSea NFT Embed" Admin Menu

function plt_hide_nft_embed_for_opensea_menus() {
	//Hide the "OpenSea NFT Embed" menu.
	remove_menu_page('opensea_integration');
}

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

Where do I put this code?