Created
October 1, 2013 14:36
-
-
Save otarza/6779498 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
123 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ordered_terms = array(); | |
foreach ($terms as $term) { | |
if ($term->parents[0] == 0) { | |
$ordered_terms[$term->tid] = $term; | |
} else { | |
$ordered_terms[$term->tid]['children'][] = $term; | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment