截至Woocommerce 3。可见性为changed to taxonomy instead of meta. 因此,您需要将meta\\u查询更改为tax\\u查询。仅显示可见产品,
\'tax_query\' => array(
array(
\'taxonomy\' => \'product_visibility\',
\'field\' => \'name\',
\'terms\' => \'exclude-from-catalog\',
\'operator\' => \'NOT IN\',
),
),
特色产品示例
\'tax_query\' => array(
array(
\'taxonomy\' => \'product_visibility\',
\'field\' => \'name\',
\'terms\' => \'featured\',
),
),
可能的术语:“从搜索中排除”、“从目录中排除”、“精选”、“库存不足”。