validate_blog_form()
Validate the new site signup
Return
(array) Contains the new site data and error messages.
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 |
---|---|
WP-MU | Introduced. (3.0.0) |