-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidebar-footer-3.php
33 lines (30 loc) · 1004 Bytes
/
sidebar-footer-3.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/**
* Footer 3 Sidebar Template
*
* Displays widgets for the Footer 3 dynamic sidebar if any have been added to the sidebar through the
* widgets screen in the admin by the user. Otherwise, nothing is displayed.
*
* @package Codename GL
* @subpackage Template
* @since 0.1.0
* @author Aaron Nelson <[email protected]>
* @copyright Copyright (c) 2012, Aaron Nelson
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*/
if ( is_active_sidebar( 'footer-3' ) ) : ?>
<div class="widget widget-type-3">
<div class="background-texture">
<div class="top-fade">
<div class="bottom-fade">
<div class="shell">
<div class="three-column">
<?php dynamic_sidebar( 'footer-3' ); ?>
<div class="cl"></div>
</div><!-- .three-column -->
</div><!-- .shell -->
</div><!-- .bottom-fade -->
</div><!-- .top-fade -->
</div><!-- .background-texture -->
</div><!-- .widget-type-3 -->
<?php endif; ?>