WordPress multi level categories / taxonomy to Tree Array

取得無線級樹狀分類
我相信物件導向是Wordpress未來發展方向,所以本文使用 Class WP_Term_Query 取得所有分類,而不是使用 get_terms 方法,代碼如下:

$args = array(
  'taxonomy' => 'category',
  'orderby' => 'name',
  'order' => 'ASC',
  'hierarchical'  => true,
  'hide_empty' => false,
);
$the_query = new WP_Term_Query($args);
$c[......]

Read more