mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 10:50:56 +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
18 lines
387 B
PHP
18 lines
387 B
PHP
<?php
|
|
/**
|
|
* The Sidebar containing the main widget area.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
*/
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-3' ) )
|
|
return;
|
|
?>
|
|
|
|
<div id="supplementary">
|
|
<div id="footer-sidebar" class="footer-sidebar widget-area" role="complementary">
|
|
<?php dynamic_sidebar( 'sidebar-3' ); ?>
|
|
</div><!-- #footer-sidebar -->
|
|
</div><!-- #supplementary -->
|