whyisjake

Jake Spurlock

Apr 26th, 2010
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.60 KB | None | 0 0
  1. <div class="sidebar">
  2.    
  3.     <div class="widget">
  4.    
  5.         <?php
  6.             $children = wp_list_pages('title_li=&child_of='.$post->ID.'&echo=0');
  7.             if ($children) { ?>
  8.             <ul>
  9.             <?php echo $children; ?>
  10.             </ul>
  11.         <?php } ?>
  12.    
  13.     </div>
  14.    
  15.     <div class="widget">
  16.         <?php wp_list_pages('title_li=&child_of='.$post->post_parent.'&show_date=modified&date_format=$date_format'); ?>
  17.     </div>
  18.    
  19.     <?php $sidebar = is_page() ? 'page' : 'blog' ?>
  20.     <?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar($sidebar)): ?>
  21.         <!-- Static sidebar items -->
  22.     <?php endif; ?>
  23.    
  24. </div>
  25.  
  26. </div>
  27. <div class="clear"></div>
Add Comment
Please, Sign In to add comment