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

git-svn-id: https://develop.svn.wordpress.org/trunk@2492 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2005-03-29 15:11:36 +00:00
parent 7243fc1ae3
commit 3ddc18abb9
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;