All pastes #2132027 Raw Edit

Miscellany

public text v1 · immutable
#2132027 ·published 2012-03-25 14:30 UTC
rendered paste body
<!--navigation-->
                    <ul class="accordion page-list-menu">
						<?php 
						if ( is_page() ) { 
							if($post->post_parent)
							$children = wp_list_pages('title_li=&child_of='.$post->post_parent.'&echo=0&sort_column=menu_order'); else
							$children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
							//echo $children;
							/*$parent_title = get_the_title($post->post_parent);
							echo $parent_title;*/
							if ($children) { 
								echo $children; 
							}else{
								echo '<li class="active"><a href="' . get_permalink() . '">' . get_the_title() . '</a></li>';
							}
						}
						?>
                    </ul>
                    <!--/navigation-->