mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-28 12:07:36 +01:00
904acbc865
Built from https://develop.svn.wordpress.org/trunk@26030 git-svn-id: http://core.svn.wordpress.org/trunk@25960 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
378 B
PHP
18 lines
378 B
PHP
<?php
|
|
/**
|
|
* The Content Sidebar
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
* @since Twenty Fourteen 1.0
|
|
*/
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-2' ) )
|
|
return;
|
|
?>
|
|
<div id="content-sidebar" class="content-sidebar widget-area" role="complementary">
|
|
<?php do_action( 'before_sidebar' ); ?>
|
|
|
|
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
|
</div><!-- #content-sidebar -->
|