WordPress Hooks Explorer

Listing all hooks extracted WordPress Core


Details about wpmu_validate_blog_signup

Back to home

Files

Filename Hook Type Line Number PHP Doc
wp-includes/ms-functions.php apply_filters 763 /**
* Filters site details and error messages following registration.
*
* @since MU (3.0.0)
*
* @param array $result {
* Array of domain, path, blog name, blog title, user and error messages.
*
* @type string $domain Domain for the site.
* @type string $path Path for the site. Used in subdirectory installations.
* @type string $blogname The unique site name (slug).
* @type string $blog_title Blog title.
* @type string|WP_User $user By default, an empty string. A user object if provided.
* @type WP_Error $errors WP_Error containing any errors found.
* }
*/

Hook Parameters

Parameter Type Name Description
array $resul t {