0
我們有這樣的功能:Woocomerce。如何從產品目錄和搜索結果中排除(隱藏)產品?
must_be_hide($post_id) {
$bool = in_array($post_id, array(1, 2, 3, 4 ,5));
return $bool;
}
如何從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()