~gbancroft-canonical/juju-website/homepage-realignment

1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="accordion">
	<?php
	$pages = get_pages("sort_column=menu_order&parent=9&child_of=9");
	foreach ($pages as $page) {
	?>
	<h3><a href="#"><?php echo $page->post_title; ?></a></h3>
	<div>
		<ul>
			<?php wp_list_pages('sort_column=post_title&title_li=&depth=1&child_of=' . $page->ID); ?>
		</ul>
	</div>
	<?php } ?>
</div>