-
Notifications
You must be signed in to change notification settings - Fork 0
/
wpzoom_home.php
35 lines (22 loc) · 1.25 KB
/
wpzoom_home.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
34
35
<?php include(TEMPLATEPATH . '/wpzoom_slider.php'); // Featured Slider ?>
<div id="main">
<div class="main_wrap">
<div class="content">
<?php if ($wpzoom_featured_carousel_show == 'Yes' && is_home() && $paged < 2) { include(TEMPLATEPATH . '/wpzoom_carousel.php'); } // Carousel ?>
<div class="home_widgets">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Widgets (below carousel)') ) : ?> <?php endif; ?>
<div class="widgets_col_left">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Widgets (left column)') ) : ?> <?php endif; ?>
</div>
<div class="widgets_col_right">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Widgets (right column)') ) : ?> <?php endif; ?>
</div>
<div class="cleaner"> </div>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Widgets (bottom)') ) : ?> <?php endif; ?>
<div class="cleaner"> </div>
</div>
<div class="home_sidebar">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Homepage Widgets (sidebar)') ) : ?> <?php endif; ?>
</div>
<div class="clear"></div>
</div>