Advertisement
Guest User

sidebar.php

a guest
Mar 12th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Right Sidebar
  4. *
  5. * @package WordPress
  6. * @subpackage Minimatica
  7. * @since Minimatica 1.0
  8. */
  9. ?>
  10.  
  11. <div id="sidebar" class="widget-area" role="complementary">
  12. <?php if( is_active_sidebar( 1 ) ) : ?>
  13. <?php dynamic_sidebar( 1 ); ?>
  14. <?php else : ?>
  15. <?php the_widget( 'WP_Widget_Search' ); ?>
  16. <?php the_widget( 'Minimatica_Ephemera_Widget', array( 'title' => 'Asides' ) ); ?>
  17. <?php the_widget( 'WP_Widget_Pages', array( ) ); ?>
  18. <?php endif; ?>
  19. </div><!-- #sidebar -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement