如何知道这是否是儿童分类法? 时间:2013-08-27 作者:Kuka 我需要知道当前的分类法是子分类法还是父分类法。我怎样才能做到这一点?我需要它作为if语句中的条件。我需要知道if(this is child taxonomy){ } 有人知道怎么做吗? 2 个回复 最合适的回答,由SO网友:Bianca Petroiu 整理而成 您可能正在使用这段代码,可以在WordPress支持文章中找到,您可以看到here. SO网友:s_ha_dum Use get_ancestors().$ancestors = get_ancestors( 4, \'category\' ); // var_dump($ancestors); // debugging if (!empty($ancestors)) { // category 4 is a child of some other category } else { // category 4 is not a child. It is "top-level" in the hierarchy. } 结束 文章导航