Woocomerce。如何从目录和搜索结果中排除(隐藏)产品?

时间:2016-06-20 10:33:41

标签: php wordpress wordpress-plugin woocommerce hook-woocommerce

我们有这样的功能:

must_be_hide($post_id) {
  $bool = in_array($post_id, array(1, 2, 3, 4 ,5));
  return $bool;
}

这个功能如何隐藏产品目录(商店)和搜索结果?

1 个答案:

答案 0 :(得分:0)

您必须更改搜索循环并使用以下代码:

$_pf = new WC_Product_Factory();
$_product = $_pf->get_product($id); // assuming $id is available as the code is inside the loop
$_product->is_visible()