Advertisement
kiddie159

pekaboo sidebar

Apr 20th, 2012
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. * Primary sidebar
  6.  
  7. */
  8.  
  9. ?>
  10.  
  11.  
  12.  
  13. <?php if (of_get_option('pkb_subpages_nav') == '1') { ?>
  14.  
  15.  
  16.  
  17. <!--Sub pages nav begin-->
  18.  
  19. <?php if($post->post_parent) {
  20.  
  21. $children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
  22.  
  23. }
  24.  
  25. else {
  26.  
  27. $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
  28.  
  29. }
  30.  
  31. if ($children) { ?>
  32.  
  33. <ul id="submenu" class="shadow-light">
  34.  
  35. <?php echo $children; ?>
  36.  
  37. </ul>
  38.  
  39. <?php } ?>
  40.  
  41.  
  42.  
  43. <?php } ?>
  44.  
  45. <!--Sub pages nav end-->
  46.  
  47.  
  48.  
  49.  
  50.  
  51. <!--Widget begin-->
  52.  
  53. <?php if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
  54.  
  55.  
  56.  
  57. <?php get_search_form(); ?>
  58.  
  59.  
  60.  
  61. <div class="sidebar-widget widget_archive">
  62.  
  63. <div class="minimal">
  64.  
  65. <h4 class="replace"><?php _e( 'Archives', 'peekaboo' ); ?></h4>
  66.  
  67. <ul class="reg-item">
  68.  
  69. <?php wp_get_archives( 'type=monthly' ); ?>
  70.  
  71. </ul>
  72.  
  73. </div>
  74.  
  75. </div>
  76.  
  77.  
  78.  
  79. <div class="sidebar-widget widget_meta">
  80.  
  81. <div class="minimal">
  82.  
  83. <h4 class="replace"><?php _e( 'Meta', 'peekaboo' ); ?></h4>
  84.  
  85. <ul class="reg-item">
  86.  
  87. <?php wp_register(); ?>
  88.  
  89. <li><?php wp_loginout(); ?></li>
  90.  
  91. <?php wp_meta(); ?>
  92.  
  93. </ul>
  94.  
  95. </div>
  96.  
  97. </div>
  98.  
  99.  
  100.  
  101. <!--Widget end-->
  102.  
  103. <?php endif; // end primary widget area ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement