1
|
1 |
<br /><br /> |
|
2 |
|
|
3 |
<div class="clearboth"> </div> |
|
4 |
|
|
5 |
</div> |
|
6 |
|
|
7 |
</div> |
|
8 |
|
|
9 |
<div class="footer"> |
|
10 |
|
|
11 |
<div class="footnav"><a class="first" href="<?php echo get_option('home'); ?>/">Home</a> |
|
12 |
|
|
13 |
<?php |
|
14 |
|
|
15 |
$categories = wp_list_categories('depth=1&title_li=&echo=0'); |
|
16 |
|
|
17 |
$categories2 = preg_split('/(<li[^>]*>)/' ,$categories); |
|
18 |
|
|
19 |
foreach($categories2 as $var){ |
|
20 |
|
|
21 |
echo str_replace('</li>', '', $var); |
|
22 |
|
|
23 |
} ?></div> |
|
24 |
|
|
25 |
<div class="footnav"> |
|
26 |
|
|
27 |
<div class="threehundred left"> |
|
28 |
|
|
29 |
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Footer One") ) : ?> |
|
30 |
|
|
31 |
<h3>About this template</h3> |
|
32 |
|
|
33 |
<p><img class="left" src="<?php bloginfo('template_url'); ?>/images/boat.jpg" alt="About Me" />Newsworthy is the 16th template from <a href="#">DemusDesign</a>. It's a magazine-style template built on a 6-column grid that's perfect as a news site or any site with a lot of information. If you use the template, please retain the link back to my site in the footer. Thanks.</p> |
|
34 |
|
|
35 |
<?php endif; ?> |
|
36 |
|
|
37 |
</div> |
|
38 |
|
|
39 |
<div class="linksleft"> |
|
40 |
|
|
41 |
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Footer Two") ) : ?> |
|
42 |
|
|
43 |
<h3>Recent Posts</h3> |
|
44 |
|
|
45 |
<ul> |
|
46 |
|
|
47 |
<?php wp_get_archives('type=postbypost&limit=5'); ?> |
|
48 |
|
|
49 |
</ul> |
|
50 |
|
|
51 |
<?php endif; ?> |
|
52 |
|
|
53 |
</div> |
|
54 |
|
|
55 |
<div class="linksleft"> |
|
56 |
|
|
57 |
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Footer Three") ) : ?> |
|
58 |
|
|
59 |
<h3>Archives</h3> |
|
60 |
|
|
61 |
<ul> |
|
62 |
|
|
63 |
<?php wp_get_archives('limit=5'); ?> |
|
64 |
|