2013-02-19 00:08:56 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2013-09-20 21:34:10 +02:00
|
|
|
* The sidebar containing the secondary widget area
|
2013-02-19 00:08:56 +01:00
|
|
|
*
|
2013-09-20 21:34:10 +02:00
|
|
|
* Displays on posts and pages.
|
|
|
|
*
|
|
|
|
* If no active widgets are in this sidebar, hide it completely.
|
2013-02-19 00:08:56 +01:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Thirteen
|
|
|
|
* @since Twenty Thirteen 1.0
|
|
|
|
*/
|
|
|
|
|
2013-02-28 22:35:26 +01:00
|
|
|
if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
|
|
|
|
<div id="tertiary" class="sidebar-container" role="complementary">
|
2013-02-19 00:08:56 +01:00
|
|
|
<div class="sidebar-inner">
|
|
|
|
<div class="widget-area">
|
2013-02-28 22:35:26 +01:00
|
|
|
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
2013-03-19 20:25:56 +01:00
|
|
|
</div><!-- .widget-area -->
|
|
|
|
</div><!-- .sidebar-inner -->
|
2013-02-28 22:35:26 +01:00
|
|
|
</div><!-- #tertiary -->
|
2017-12-01 00:11:00 +01:00
|
|
|
<?php endif; ?>
|