This repository was archived by the owner on Sep 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathfooter.php
executable file
·116 lines (80 loc) · 2.17 KB
/
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<div id="secondary_nav">
<ul id="widgetlist">
<div id="col1">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar("Column 1") ) : ?>
<li class="footerlist">
<h2>Pages</h2>
<ul>
<?php wp_list_pages("title_li="); ?>
</ul>
</li>
<li class="footerlist">
<h2>Search</h2>
<ul>
<li>
<?php include (TEMPLATEPATH . '/searchform.php'); ?>
</li>
</ul>
</li>
<?php endif; ?>
</div><!-- close col1 -->
<div id="col2">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar("Column 2") ) : ?>
<li class="footerlist">
<h2>Categories</h2>
<ul>
<?php wp_list_categories('orderby=name&title_li='); ?>
</ul>
</li>
<li class="taglist">
<h2>Tags</h2>
<div class="wp-tag-cloud">
<?php wp_tag_cloud('format=flat&unit=px&smallest=10&largest=24'); ?>
</div>
</li>
<?php endif; ?>
</div><!-- close col2 -->
<div id="col3">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar("Column 3") ) : ?>
<li class="footerlist">
<h2>Archives</h2>
<ul>
<?php wp_get_archives('format=html'); ?>
</ul>
</li>
<?php endif; ?>
</div><!-- close col3 -->
<div id="col4">
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar("Column 4") ) : ?>
<li class="footerlist">
<h2>Blogroll</h2>
<ul>
<?php wp_list_bookmarks('categorize=0&title_li=0&title_after=&title_before=');?>
</ul>
</li>
<li class="footerlist">
<h2>Subscribe</h2>
<ul>
<li><a href="<?php bloginfo('rss2_url'); ?>">rss </a></li>
<li><a href="<?php bloginfo('atom_url'); ?>">atom </a></li>
<li><a href="<?php bloginfo('rdf_url'); ?>">rdf</a></li>
</ul>
</li>
<?php endif; ?>
</div><!-- close col4 -->
</ul>
</div>
<div id="footer">
<div class="copyright">
<p><a href="http://andreamignolo.com/zack-990">Zack 990</a> by <a href="http://weinbergphoto.com">Joshua Weinberg</a> and <a href="http://andreamignolo.com">Mignolo</a> § Powered by
<a href="http://wordpress.org">WordPress</a>
</p>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>