-
Notifications
You must be signed in to change notification settings - Fork 89
/
sidebar-footer.php
41 lines (31 loc) · 1.06 KB
/
sidebar-footer.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
36
37
38
39
40
41
<?php
/**
* The Footer widget areas.
*/
?>
<div class="grid_2 widget-area" role="complementary">
<?php
if ( ! dynamic_sidebar( 'footer-1' ) )
the_widget( 'Argo_follow_Widget', array( 'title' => 'Follow us' ) );
?>
</div> <!-- /.grid_2 -->
<div class="grid_6 widget-area" role="complementary">
<?php
if ( ! dynamic_sidebar( 'footer-2' ) )
the_widget( 'Argo_more_featured_Widget', array( 'title' => "Don't Miss" ) );
?>
</div> <!-- /.grid_6 -->
<div class="grid_4 widget-area" role="complementary">
<?php if ( ! dynamic_sidebar( 'footer-3' ) ) : ?>
<div id="searchform-footer">
<?php get_search_form(); ?>
</div>
<div id="ft-archive">
<h3>Browse archives by date</h3>
<select name="archive-dropdown" onChange='document.location.href=this.options[this.selectedIndex].value;'>
<option value="">Select Month</option>
<?php wp_get_archives( array( 'type' => 'monthly', 'format' => 'option', 'show_post_count' => 1 ) ); ?>
</select>
</div>
<?php endif; // end sidebar widget area ?>
</div> <!-- /.grid_4 -->