mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-26 19:18:57 +01:00
881c87cc51
Built from https://develop.svn.wordpress.org/trunk@25624 git-svn-id: http://core.svn.wordpress.org/trunk@25541 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-3' ) )
|
|
return;
|
|
?>
|
|
<div id="content-sidebar" class="content-sidebar widget-area" role="complementary">
|
|
<?php do_action( 'before_sidebar' ); ?>
|
|
|
|
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
|
</div><!-- #content-sidebar -->
|