From 38d509975a280dd78501d64dbf55b180bb7a3048 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 29 Mar 2005 15:11:36 +0000 Subject: [PATCH] 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 --- wp-content/themes/classic/footer.php | 2 +- wp-content/themes/default/footer.php | 2 +- wp-includes/functions.php | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/classic/footer.php b/wp-content/themes/classic/footer.php index 2d5b2580e..b18b02228 100644 --- a/wp-content/themes/classic/footer.php +++ b/wp-content/themes/classic/footer.php @@ -7,6 +7,6 @@ - + \ No newline at end of file diff --git a/wp-content/themes/default/footer.php b/wp-content/themes/default/footer.php index ecd0b1819..9ee08e291 100644 --- a/wp-content/themes/default/footer.php +++ b/wp-content/themes/default/footer.php @@ -14,7 +14,7 @@ - + \ No newline at end of file diff --git a/wp-includes/functions.php b/wp-includes/functions.php index f13d8c283..cfebd575a 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -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;