]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-includes/theme-compat/footer.php
WordPress 4.4
[autoinstalls/wordpress.git] / wp-includes / theme-compat / footer.php
1 <?php
2 /**
3  * @package WordPress
4  * @subpackage Theme_Compat
5  * @deprecated 3.0
6  *
7  * This file is here for Backwards compatibility with old themes and will be removed in a future version
8  *
9  */
10 _deprecated_file(
11         /* translators: %s: template name */
12         sprintf( __( 'Theme without %s' ), basename( __FILE__ ) ),
13         '3.0',
14         null,
15         /* translators: %s: template name */
16         sprintf( __( 'Please include a %s template in your theme.' ), basename( __FILE__ ) )
17 );
18 ?>
19
20 <hr />
21 <div id="footer" role="contentinfo">
22 <!-- 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. -->
23         <p>
24                 <?php printf(__('%1$s is proudly powered by %2$s'), get_bloginfo('name'),
25                 '<a href="https://wordpress.org/">WordPress</a>'); ?>
26                 <br /><?php printf(__('%1$s and %2$s.'), '<a href="' . get_bloginfo('rss2_url') . '">' . __('Entries (RSS)') . '</a>', '<a href="' . get_bloginfo('comments_rss2_url') . '">' . __('Comments (RSS)') . '</a>'); ?>
27                 <!-- <?php printf(__('%d queries. %s seconds.'), get_num_queries(), timer_stop(0, 3)); ?> -->
28         </p>
29 </div>
30 </div>
31
32 <!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
33 <?php /* "Just what do you think you're doing Dave?" */ ?>
34
35                 <?php wp_footer(); ?>
36 </body>
37 </html>