mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 19:01:44 +01:00
eaf78d3f7c
Built from https://develop.svn.wordpress.org/trunk@25769 git-svn-id: http://core.svn.wordpress.org/trunk@25682 1a063a9b-81f0-0310-95a4-ce76da25c4cd
17 lines
377 B
PHP
17 lines
377 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 -->
|