public
Description: Wordpress template based on the default template but modified for use as a starting point for theme designers.
Homepage: http://www.poweredbygeek.com/
Clone URL: git://github.com/lwallenstein/designers-default.git
designers-default / footer.php
100755 21 lines (17 sloc) 0.845 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<hr />
<div id="footer">
<!-- If you'd like to support WordPress, having the "powered by" link somewhere on your blog is the best way; it's our only promotion or advertising. -->
<p>
<?php bloginfo('name'); ?> is proudly powered by <a href="http://wordpress.org/">WordPress</a>
</p>
<div id="footer_rss_links">
<a href="<?php bloginfo('rss2_url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/feed.png" alt="RSS Feed for Entries" /> Entries</a>
and
<a href="<?php bloginfo('comments_rss2_url'); ?>"><img src="<?php bloginfo('stylesheet_directory'); ?>/images/feed.png" alt="RSS Feed for Comments" /> Comments</a>.
</div>
<!-- <?php echo get_num_queries(); ?> queries. <?php timer_stop(1); ?> seconds. -->
</div>
</div>
 
<?php wp_footer(); ?>
</body>
</html>