Skip to content

Instantly share code, notes, and snippets.

@lulezi
Created September 7, 2012 14:08
Show Gist options
  • Save lulezi/3666538 to your computer and use it in GitHub Desktop.
Save lulezi/3666538 to your computer and use it in GitHub Desktop.
treemenu with select-dropdown-output
<select><?php snippet('treemenu') ?></select>
<?php if(!isset($subpages)) $subpages = $site->pages() ?>
<?php foreach($subpages->visible() as $p): ?>
<option value="<?php echo $p->url() ?>"><?php echo $p->title() ?></option>
<?php if($p->hasChildren()): ?>
<?php snippet('treemenu', array('subpages' => $p->children())) ?>
<?php endif ?>
<?php endforeach ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment