-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
48 lines (46 loc) · 1.36 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
<?php
/**
* @package WordPress
* @subpackage Piraten_Berlin_Theme
*/
?>
<!-- begin footer -->
</div>
<div id="sidebar">
<?php /* Widgetized sidebar, if you have the plugin installed. */
/* no need for another sidebar.php :<?php get_sidebar();?> */
if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Sidebar') ) {
echo "dynamic sidebar ('Sidebar') doesn't work :(";
}
?>
</div>
<div class="clear"></div>
</div>
<div id="footer">
<div id="footer_img_right"></div>
<div id="footer_img_left"></div>
<div id="footer_main_content">
<div id="bottom_panel">
<?php /* Widgetized menubar, if you have the dynamic sidebar plugin installed. */
$works=false;
if(function_exists('dynamic_sidebar')){
$works = dynamic_sidebar('Bottom Panel');
}
if(!works){
echo "dynamic sidebars for Bottom Panel don't work :(";
}
?>
</div>
</div>
<div id="footer_sub_content">
<?php bloginfo('name'); ?> is proudly powered by
<a href="http://wordpress.org/">WordPress</a>
–
<a href="<?php bloginfo('rss2_url'); ?>">Entries (RSS)</a>
and <a href="<?php bloginfo('comments_rss2_url'); ?>">Comments (RSS)</a>
<!-- <?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. -->
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>