如何在EXCLUDE命令中包含多个ID? 时间:2017-08-03 作者:Praveen Kumar $product_cats = get_terms(\'product_cat\',array(\'hide_empty\'=>1,\'exclude\'=>8,\'parent\'=>0)); 在上文中,我如何在排除字段中添加多个id(当前是8,我想添加9、10和11)? 1 个回复 SO网友:Aniruddha Gawade 您可以将数组传递给exclude 参数:$product_cats = get_terms( \'product_cat\', array( \'hide_empty\'=>1, \'exclude\'=>array(8, 9, 10), \'parent\'=>0 ) ); 结束 文章导航