Wordpress/wp-content/themes/twentythirteen/sidebar.php
Mark Jaquith a279913a2e Introduce the Twenty Thirteen theme.
props matt, joen, obenland, lancewillett. see #23504

git-svn-id: https://develop.svn.wordpress.org/trunk@23452 602fd350-edb4-49c9-b593-d223f7449a82
2013-02-18 23:08:56 +00:00

20 lines
502 B
PHP

<?php
/**
* The sidebar containing the main widget area.
*
* If no active widgets in this sidebar, it will be hidden completely.
*
* @package WordPress
* @subpackage Twenty_Thirteen
* @since Twenty Thirteen 1.0
*/
if ( is_active_sidebar( 'sidebar-1' ) ) : ?>
<div id="secondary" class="sidebar-container" role="complementary">
<div class="sidebar-inner">
<div class="widget-area">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div>
</div>
</div><!-- #secondary -->
<?php endif; ?>