在你第一次foreach
循环,在脚本的顶部,定义一个空数组来容纳您要查找的内容:
$taxWith_product_cat = array();
现在,由于您正在遍历所有分类法和其中的所有术语,因此在术语循环中
foreach($terms as $term)
, 检查当前术语是否为
product_cat
. 如果是,请将术语分类添加到新数组中:
if ($term->slug == \'product_cat \')
$taxWith_product_cat[] = $taxonomy;
给你。现在,在脚本的末尾,您有了一系列分类法,其中包含
product_cat
:
echo "<pre>".print_r($taxWith_product_cat,true)."</pre>";