author | ymh <ymh.work@gmail.com> |
Wed, 16 Oct 2019 11:23:38 +0200 | |
changeset 14 | 00ac8f60d73f |
parent 7 | cf61fcea0001 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* The sidebar containing the footer widget area |
|
4 |
* |
|
5 |
* If no active widgets in this sidebar, hide it completely. |
|
6 |
* |
|
7 |
* @package WordPress |
|
8 |
* @subpackage Twenty_Thirteen |
|
9 |
* @since Twenty Thirteen 1.0 |
|
10 |
*/ |
|
11 |
||
12 |
if ( is_active_sidebar( 'sidebar-1' ) ) : ?> |
|
13 |
<div id="secondary" class="sidebar-container" role="complementary"> |
|
14 |
<div class="widget-area"> |
|
15 |
<?php dynamic_sidebar( 'sidebar-1' ); ?> |
|
16 |
</div><!-- .widget-area --> |
|
17 |
</div><!-- #secondary --> |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
0
diff
changeset
|
18 |
<?php endif; ?> |