Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: preprocess_signup_form

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
407                else
408                     _e( 'Site registration has been disabled.' );
409                break;
410           case 'gimmeanotherblog':
411                validate_another_blog_signup();
412                break;
413           case 'default':
414           default :
415                $user_email = isset( $_POST[ 'user_email' ] ) ? $_POST[ 'user_email' ] : '';
416                do_action( 'preprocess_signup_form' ); // populate the form from invites, elsewhere?
417                if ( is_user_logged_in() && ( $active_signup == 'all' || $active_signup == 'blog' ) )
418                     signup_another_blog($newblogname);
419                elseif ( is_user_logged_in() == false && ( $active_signup == 'all' || $active_signup == 'user' ) )
420                     signup_user( $newblogname, $user_email );
421                elseif ( is_user_logged_in() == false && ( $active_signup == 'blog' ) )
422                     _e( 'Sorry, new registrations are not allowed at this time.' );
423                else
424                     _e( 'You are logged in already. No need to register again!' );
425