
sidebar.php
By: a guest on
Mar 12th, 2012 | syntax:
None | size: 0.50 KB | hits: 31 | expires: Never
<?php
/**
* The Right Sidebar
*
* @package WordPress
* @subpackage Minimatica
* @since Minimatica 1.0
*/
?>
<div id="sidebar" class="widget-area" role="complementary">
<?php if( is_active_sidebar( 1 ) ) : ?>
<?php dynamic_sidebar( 1 ); ?>
<?php else : ?>
<?php the_widget( 'WP_Widget_Search' ); ?>
<?php the_widget( 'Minimatica_Ephemera_Widget', array( 'title' => 'Asides' ) ); ?>
<?php the_widget( 'WP_Widget_Pages', array( ) ); ?>
<?php endif; ?>
</div><!-- #sidebar -->