diff options
author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2006-10-11 11:37:25 +0000 |
---|---|---|
committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2006-10-11 11:37:25 +0000 |
commit | 69f836f072daf4553db3a76429581ddbc2742f98 (patch) | |
tree | 83a41f870824fe5cbc30a2784c9f917daeca0d74 /wp-includes/general-template.php | |
parent | ee66b743ce7a5df18d37b4deb34d469aac1d2b5f (diff) | |
download | wordpress-mu-69f836f072daf4553db3a76429581ddbc2742f98.tar.gz wordpress-mu-69f836f072daf4553db3a76429581ddbc2742f98.tar.xz wordpress-mu-69f836f072daf4553db3a76429581ddbc2742f98.zip |
WP Merge to rev 4376
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@802 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/general-template.php')
-rw-r--r-- | wp-includes/general-template.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wp-includes/general-template.php b/wp-includes/general-template.php index d5c2e49..0e80761 100644 --- a/wp-includes/general-template.php +++ b/wp-includes/general-template.php @@ -3,6 +3,7 @@ /* Note: these tags go anywhere in the template */ function get_header() { + do_action( 'get_header' ); if ( file_exists( TEMPLATEPATH . '/header.php') ) load_template( TEMPLATEPATH . '/header.php'); else @@ -11,6 +12,7 @@ function get_header() { function get_footer() { + do_action( 'get_footer' ); if ( file_exists( TEMPLATEPATH . '/footer.php') ) load_template( TEMPLATEPATH . '/footer.php'); else |