我需要得到所有的鼻涕虫/术语-那些使用的&;那些不是。它是分级的(3-4级)。
如何按层次顺序获取所有(已使用和未使用)术语/段塞?
此代码返回1。液位缓动阀和;仅使用其他级别:
$locations = get_terms(\'location\', array( \'orderby\' => \'slug\', \'parent\' => 0, \'hide_empty\' => false) );
此代码返回一个混乱-层次结构全部关闭&;真是一团糟:
$locations = get_terms(\'location\', array( \'orderby\' => \'slug\', \'hide_empty\' => false) );
最合适的回答,由SO网友:WordPress Mike 整理而成
试试这个。
$locations = get_terms( \'location\', \'hide_empty=0&orderby=term_group\' );
法典上说要避免使用
term_group
但应该没问题。它从未完全实现,但据其他人说,它经常被使用。