mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-07 03:11:01 +01:00
945b12bfcf
Built from https://develop.svn.wordpress.org/trunk@25090 git-svn-id: http://core.svn.wordpress.org/trunk@25074 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
372 B
PHP
18 lines
372 B
PHP
<?php
|
|
/**
|
|
* The Sidebar containing the main widget area.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Fourteen
|
|
*/
|
|
|
|
if ( ! is_active_sidebar( 'sidebar-4' ) )
|
|
return;
|
|
?>
|
|
|
|
<div id="supplementary">
|
|
<div id="footer-sidebar" class="widget-area" role="complementary">
|
|
<?php dynamic_sidebar( 'sidebar-4' ); ?>
|
|
</div><!-- #footer-sidebar -->
|
|
</div><!-- #supplementary -->
|