给定以下类别层次结构:
- 行星
- 大陆
- 国家
- 状态
- 国家
- 大陆
当我使用以下代码从所有包含它们的帖子中检索它们时:
$post_categories = wp_get_post_categories( $post_id );
$cats = array();
foreach($post_categories as $c){
$cat = get_category( $c );
$cats[] = array( 'name' => $cat->name, 'slug' => $cat->slug );
}
并回显结果:
echo $cats[0]['name'];
echo $cats[1]['name'];
echo $cats[2]['name'];
echo $cats[3]['name'];
我让它们按字母顺序排列,如下所示:
Continent, Country, Planet, State
但我真正需要的是让它们按层次结构排序,如下所示:
Planet, Continent, Country, State
有任何想法吗?提前致谢!