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