2013-07-28 18:55:10 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2013-10-11 18:02:11 -04:00
|
|
|
* The Content Sidebar
|
2013-07-28 18:55:10 -04:00
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
* @subpackage Twenty_Fourteen
|
2013-10-11 18:02:11 -04:00
|
|
|
* @since Twenty Fourteen 1.0
|
2013-07-28 18:55:10 -04:00
|
|
|
*/
|
2013-10-10 23:17:11 -04:00
|
|
|
if ( ! is_active_sidebar( 'sidebar-2' ) )
|
2013-09-25 12:36:09 -04:00
|
|
|
return;
|
2013-07-28 18:55:10 -04:00
|
|
|
?>
|
2013-08-20 13:31:08 -04:00
|
|
|
<div id="content-sidebar" class="content-sidebar widget-area" role="complementary">
|
2013-07-28 18:55:10 -04:00
|
|
|
<?php do_action( 'before_sidebar' ); ?>
|
|
|
|
|
2013-10-10 23:17:11 -04:00
|
|
|
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
2013-08-14 23:13:44 -04:00
|
|
|
</div><!-- #content-sidebar -->
|