signup_blogform action-hookWP 3.0.0

Fires after the site sign-up form.

Usage

add_action( 'signup_blogform', 'wp_kama_signup_blogform_action' );

/**
 * Function for `signup_blogform` action-hook.
 * 
 * @param WP_Error $errors A WP_Error object possibly containing 'blogname' or 'blog_title' errors.
 *
 * @return void
 */
function wp_kama_signup_blogform_action( $errors ){

	// action...
}
$errors(WP_Error)
A WP_Error object possibly containing 'blogname' or 'blog_title' errors.

Changelog

Since 3.0.0 Introduced.

Where the hook is called

show_blog_form()
signup_blogform
wp-signup.php 236
do_action( 'signup_blogform', $errors );

Where the hook is used in WordPress

Usage not found.