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:
parent
7133584620
commit
38d509975a
|
@ -7,6 +7,6 @@
|
|||
|
||||
</div>
|
||||
|
||||
<?php do_action('wp_footer'); ?>
|
||||
<?php wp_footer(); ?>
|
||||
</body>
|
||||
</html>
|
|
@ -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>
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue