Add wp_footer() to maintain fearful symmetry with our head. http://mosquito.wordpress.org/view.php?id=1147 Props: ringmaster

git-svn-id: http://svn.automattic.com/wordpress/trunk@2492 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-03-29 15:11:36 +00:00
parent 7133584620
commit 38d509975a
3 changed files with 6 additions and 2 deletions

View File

@ -7,6 +7,6 @@
</div>
<?php do_action('wp_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>

View File

@ -14,7 +14,7 @@
<!-- Gorgeous design by Michael Heilemann - http://binarybonsai.com/kubrick/ -->
<?php /* "Just what do you think you're doing Dave?" */ ?>
<?php do_action('wp_footer'); ?>
<?php wp_footer(); ?>
</body>
</html>

View File

@ -1246,6 +1246,10 @@ function wp_head() {
do_action('wp_head');
}
function wp_footer() {
do_action('wp_footer');
}
function is_single ($post = '') {
global $wp_query;