Skip to content

Commit

Permalink
add actions before and after signup form, see #12199
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@13629 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
wpmuguru committed Mar 9, 2010
1 parent 208f98f commit a40011f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions wp-signup.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ function wpmu_signup_stylesheet() {


add_action( 'wp_head', 'wpmu_signup_stylesheet' ); add_action( 'wp_head', 'wpmu_signup_stylesheet' );
get_header(); get_header();

do_action( 'before_signup_form' );
?> ?>
<div id="content" class="widecolumn"> <div id="content" class="widecolumn">
<div class="mu_register"> <div class="mu_register">
Expand Down Expand Up @@ -442,5 +444,6 @@ function confirm_blog_signup($domain, $path, $blog_title, $user_name = '', $user
?> ?>
</div> </div>
</div> </div>
<?php do_action( 'after_signup_form' ); ?>


<?php get_footer(); ?> <?php get_footer(); ?>

0 comments on commit a40011f

Please sign in to comment.