Skip to content

Instantly share code, notes, and snippets.

View fhott's full-sized avatar
🛴

Fillipe Hott fhott

🛴
  • Belo Horizonte / Brazil
  • X @fhott
View GitHub Profile
@boonebgorges
boonebgorges / gist:2185537
Created March 24, 2012 17:47
Recursively sort the output of get_categories() in order of parent-child hierarchy
<?php
$categories = get_the_category();
// Assemble a tree of category relationships
// Also re-key the category array for easier
// reference
$category_tree = array();
$keyed_categories = array();