-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
51 lines (42 loc) · 1.53 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
<?php
/**
* The template for displaying the footer. A little bit form twentyeleven
*
* @package
*/
?>
</div><!-- #main -->
<footer id="colophon" role="contentinfo">
<?php
if ( function_exists('dynamic_sidebar') ) {
echo '<div id="footer-center" class="widget-area">';
if ( !dynamic_sidebar('footer-center') ) { // Try to output the widgetized area
// Otherwise output all the blog's links
the_widget('WP_Widget_Links');
};
echo '</div>';
echo '<div id="footer-left" class="widget-area">';
if ( !dynamic_sidebar('footer-left')) { // Try to output the widgetized area
// Otherwise, display just the site name and copyright
echo '<p>
© ' . date('Y') . ' <a href="' . get_bloginfo('wpurl') . '">' . get_bloginfo('name') . '</a>.
</p>';
}
echo '</div>';
echo '<div id="footer-right" class="widget-area">';
if ( !dynamic_sidebar('footer-right') ) { // Try to output
// Otherwise, output wordpress credit
echo '<p id="site-generator">
<a href="' . esc_url('http://wordpress.org/') .'" title="' . esc_attr('Semantic Personal Publishing Platform') . '" rel="generator">
Proudly powered by WordPress.
<img src="' . get_bloginfo('template_directory') . '/images/wordpress.png" alt="Wordpress icon" width="16" height="16" style="vertical-align:top;" />
</a></p>';
}
echo '</div>';
}
?>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>