Skip to content

Instantly share code, notes, and snippets.

@chriscoyier
Created August 21, 2012 01:06
Show Gist options
  • Save chriscoyier/3410193 to your computer and use it in GitHub Desktop.
Save chriscoyier/3410193 to your computer and use it in GitHub Desktop.
<?php
/*
Template Name: Alamanc Group
*/
?>
<?php get_header(); the_post(); ?>
<h1 class="almanac-title">Almanac</h1>
<div class="almanac-wrapper">
<?php if (is_page('13706')) { ?>
<div class="almanac-page left-page">
<?php wp_list_pages('title_li=&exclude=&child_of=13708&depth=3'); ?>
</div>
<div class="almanac-page right-page">
THIS ONE FAILS.
<?php wp_list_pages('title_li=&exclude=&child_of=13710&depth=3'); ?>
</div>
<?php } else { ?>
<ul class="almanac-nav group">
<?php wp_list_pages('title_li=&exclude=&child_of='.$post->ID.'&depth=3'); ?>
</ul>
<?php } ?>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment