apply_filters( ‘wpmu_validate_blog_signup’, array $result )

In this article

Filters site details and error messages following registration.

Parameters

$resultarray
Array of domain, path, site name, site title, user and error messages.
  • domain string
    Domain for the site.
  • path string
    Path for the site. Used in subdirectory installations.
  • blogname string
    The unique site name (slug).
  • blog_title string
    Site title.
  • user string|WP_User
    By default, an empty string. A user object if provided.
  • errors WP_Error
    WP_Error containing any errors found.

Source

return apply_filters( 'wpmu_validate_blog_signup', $result );

Changelog

VersionDescription
MU (3.0.0)Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.