add actions before and after signup form, see #12199

git-svn-id: http://svn.automattic.com/wordpress/trunk@13629 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
wpmuguru 2010-03-09 16:27:02 +00:00
parent 208f98f762
commit a40011fbb5

View File

@ -54,6 +54,8 @@ function wpmu_signup_stylesheet() {
add_action( 'wp_head', 'wpmu_signup_stylesheet' );
get_header();
do_action( 'before_signup_form' );
?>
<div id="content" class="widecolumn">
<div class="mu_register">
@ -442,5 +444,6 @@ if ( $active_signup == "none" ) {
?>
</div>
</div>
<?php do_action( 'after_signup_form' ); ?>
<?php get_footer(); ?>