mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
d1d3076d5a
props matt, joen, obenland, lancewillett. see #23504 git-svn-id: http://core.svn.wordpress.org/trunk@23452 1a063a9b-81f0-0310-95a4-ce76da25c4cd
18 lines
460 B
PHP
18 lines
460 B
PHP
<?php
|
|
/**
|
|
* The sidebar containing the footer widget area.
|
|
*
|
|
* If no active widgets in this sidebar, it will be hidden completely.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Thirteen
|
|
* @since Twenty Thirteen 1.0
|
|
*/
|
|
|
|
if ( is_active_sidebar( 'sidebar-2' ) ) : ?>
|
|
<div id="tertiary" class="sidebar-container" role="complementary">
|
|
<div class="widget-area">
|
|
<?php dynamic_sidebar( 'sidebar-2' ); ?>
|
|
</div>
|
|
</div><!-- #tertiary -->
|
|
<?php endif; ?>
|