How to Hide the "Product Import Export" Admin Menu

function plt_hide_woo_product_excel_importer_menus() {
	//Hide the "Product Import Export" menu.
	remove_menu_page('woo-product-importer');
}

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

Where do I put this code?