Advertisement
kristopherlouie

BAM sidebar.php

Apr 27th, 2012
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.79 KB | None | 0 0
  1. <?php
  2. /**
  3.  * @package WordPress
  4.  * @subpackage BigAssMonsters
  5.  */
  6. ?>
  7.         <section id="right-col">
  8.             <?php if ( ! dynamic_sidebar( 'sidebar' ) ) : ?>
  9.  
  10.                 <aside id="search" class="widget widget_search">
  11.                     <?php get_search_form(); ?>
  12.                 </aside>
  13.  
  14.                 <aside id="archives" class="widget">
  15.                     <h1 class="widget-title"><?php _e( 'Archives', 'themename' ); ?></h2>
  16.                     <ul>
  17.                         <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
  18.                     </ul>
  19.                 </aside>
  20.  
  21.                 <aside id="meta" class="widget">
  22.                     <h1 class="widget-title"><?php _e( 'Meta', 'themename' ); ?></h2>
  23.                     <ul>
  24.                         <?php wp_register(); ?>
  25.                         <aside><?php wp_loginout(); ?></aside>
  26.                         <?php wp_meta(); ?>
  27.                     </ul>
  28.                 </aside>
  29.  
  30.             <?php endif; // end sidebar widget area ?>
  31.         </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement