How to Hide the "Products Bulk Edit" Admin Menu

function plt_hide_webd_woocommerce_product_bulk_edit_menus() {
	//Hide the "Products Bulk Edit" menu.
	remove_menu_page('webd-woocommerce-bulk-edit');
}

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

Where do I put this code?