wp/wp-includes/theme-compat/footer.php
author ymh <ymh.work@gmail.com>
Tue, 09 Jun 2015 03:35:32 +0200
changeset 5 5e2f62d02dcd
parent 0 d970ebf37754
child 7 cf61fcea0001
permissions -rw-r--r--
upgrade wordpress + plugins
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<?php
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
/**
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
 * @package WordPress
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
 * @subpackage Theme_Compat
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
 * @deprecated 3.0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
 * This file is here for Backwards compatibility with old themes and will be removed in a future version
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
 *
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
 */
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
_deprecated_file( sprintf( __( 'Theme without %1$s' ), basename(__FILE__) ), '3.0', null, sprintf( __('Please include a %1$s template in your theme.'), basename(__FILE__) ) );
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
<hr />
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
<div id="footer" role="contentinfo">
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
<!-- 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. -->
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
	<p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
		<?php printf(__('%1$s is proudly powered by %2$s'), get_bloginfo('name'),
5
5e2f62d02dcd upgrade wordpress + plugins
ymh <ymh.work@gmail.com>
parents: 0
diff changeset
    18
		'<a href="https://wordpress.org/">WordPress</a>'); ?>
0
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
		<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>'); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
		<!-- <?php printf(__('%d queries. %s seconds.'), get_num_queries(), timer_stop(0, 3)); ?> -->
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
	</p>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
</div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
</div>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
<?php /* "Just what do you think you're doing Dave?" */ ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
		<?php wp_footer(); ?>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
</body>
d970ebf37754 first import
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
</html>