-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar-front-page.php
33 lines (28 loc) · 990 Bytes
/
sidebar-front-page.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
/**
* Sidebar with the footer widget areas.
*
* @package w314a
*/
?>
<?php if ( is_active_sidebar( 'sidebar-5' ) || is_active_sidebar( 'sidebar-6' ) || is_active_sidebar( 'sidebar-7' ) ) : ?>
<div id="quinary" class="front-page-widget-area" role="complementary">
<div class="front-page-widget-wrapper clear">
<?php if ( is_active_sidebar( 'sidebar-6' ) ) : ?>
<div class="front-page-widget">
<?php dynamic_sidebar( 'sidebar-6' ); ?>
</div><!-- .front-page-widget -->
<?php endif; ?>
<?php if ( is_active_sidebar( 'sidebar-7' ) ) : ?>
<div class="front-page-widget">
<?php dynamic_sidebar( 'sidebar-7' ); ?>
</div><!-- .front-page-widget -->
<?php endif; ?>
<?php if ( is_active_sidebar( 'sidebar-8' ) ) : ?>
<div class="front-page-widget">
<?php dynamic_sidebar( 'sidebar-8' ); ?>
</div><!-- .front-page-widget -->
<?php endif; ?>
</div><!-- .front-page-widget-wrapper -->
</div><!-- #quinary -->
<?php endif; ?>