mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-25 18:48:57 +01:00
7d22195cbb
Built from https://develop.svn.wordpress.org/trunk@25762 git-svn-id: http://core.svn.wordpress.org/trunk@25675 1a063a9b-81f0-0310-95a4-ce76da25c4cd
16 lines
348 B
PHP
16 lines
348 B
PHP
<?php
|
|
/**
|
|
* The Content Sidebar.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
*/
|
|
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 -->
|