Woocomerce。如何从产品目录和搜索结果中排除(隐藏)产品?
问题描述:
我们有这样的功能:Woocomerce。如何从产品目录和搜索结果中排除(隐藏)产品?
must_be_hide($post_id) {
$bool = in_array($post_id, array(1, 2, 3, 4 ,5));
return $bool;
}
如何从woocomerce目录(店)和搜索结果此功能隐藏产品?
答
你必须改变搜索循环,使用下面的代码:
$_pf = new WC_Product_Factory();
$_product = $_pf->get_product($id); // assuming $id is available as the code is inside the loop
$_product->is_visible()