-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwiaw_fat_footer.php
76 lines (67 loc) · 2.33 KB
/
wiaw_fat_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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<?php
/*---------------------------------*/
/* WIDGETIZED FOOTER - 4 COLUMNS */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/
/*-----------------------------------------*/
/* register sidebars for widgetized footer */
if (function_exists('register_sidebar')) {
//$sidebars = array(1, 2, 3, 4);
$sidebars = array(1, 2, 3, 4);
foreach($sidebars as $number) {
register_sidebar(array(
'name' => 'Footer ' . $number,
'id' => 'footer-' . $number,
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}
}
/*-----------------------*/
/* set up footer widgets */
function widgetized_footer() {
?>
<div id="footer_setup">
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 1') ) : ?>
<?php endif; ?>
</div>
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 2') ) : ?>
<?php endif; ?>
</div>
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 3') ) : ?>
<?php endif; ?>
</div>
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 4') ) : ?>
<?php endif; ?>
</div>
</div>
<?php
}
add_action('thesis_hook_footer','widgetized_footer');
/* remove the thesis attribution */
remove_action('thesis_hook_footer', 'thesis_attribution');
function after_widgetized_footer() {
?>
<div class="legal">
<div class="wiaw_footer">
<a href="http://website-in-a-weekend.net/" title="Website in a Weekend - SEO, Tips& Tricks, Wordpress">Website in a Weekend - SEO, Tips & Tricks, Wordpress</a> | Copyright © 2009-2010 All Rights Reserved
</div>
<div>
<a href="http://inventiumsystems.com/">Inventium Systems</a> |
<a href="http://website-in-a-weekend.net/disclaimer">Disclaimer</a> |
<a href="http://website-in-a-weekend.net/privacy-policy">Privacy Policy</a> |
<a href="http://website-in-a-weekend.net/terms-and-conditions">Terms & Conditions</a> |
Design by <a href="http://robertokoci.com" title="Red Diamond Studio Web Design">Red Diamond Web Design</a>.
</div>
</div>
<?php
}
remove_action('thesis_hook_after_footer','after_footer');
add_action('thesis_hook_after_footer','after_widgetized_footer');
?>