Skip to content

Instantly share code, notes, and snippets.

@annalinneajohansson
Last active December 18, 2015 01:58
Show Gist options
  • Save annalinneajohansson/5707105 to your computer and use it in GitHub Desktop.
Save annalinneajohansson/5707105 to your computer and use it in GitHub Desktop.
Populera $child_array rekursivt så att sidornas hierarkier bibehålls
<?php
function populate_children_hierarchically( $child ) {
$child_array = array( 'title' => $child->title, 'url' => $child->url );
if( !empty( $child->children ) ) {
foreach( $child->children as $granchild ) {
$child_array[] = populate_children_hierarchically( $granchild );
}
}
return $child_array;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment