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