validate_blog_form()
Validates the new site sign-up.
Return
(array) Contains the new site data and error messages.<br> See wpmu_validate_blog_signup() for details.
Source
File: wp-signup.php
function validate_blog_form() {
$user = '';
if ( is_user_logged_in() )
$user = wp_get_current_user();
return wpmu_validate_blog_signup($_POST['blogname'], $_POST['blog_title'], $user);
}
Changelog
Version | Description |
---|---|
MU (3.0.0) | Introduced. MU (3.0.0) |