wpseek.com
A WordPress-centric search engine for devs and theme authors
signup_nonce_check › WordPress Function
Since
Deprecatedn/a
› signup_nonce_check ( $result )
Parameters: |
|
Returns: |
|
Defined at: |
|
Codex: | |
Change Log: |
|
Processes the signup nonce created in signup_nonce_fields().
Related Functions: signup_nonce_fields, wp_nonce_tick, wp_version_check, signup_another_blog, ms_site_check
Source
function signup_nonce_check( $result ) { if ( ! strpos( $_SERVER['PHP_SELF'], 'wp-signup.php' ) ) { return $result; } if ( ! wp_verify_nonce( $_POST['_signup_form'], 'signup_form_' . $_POST['signup_form_id'] ) ) { $result['errors']->add( 'invalid_nonce', __( 'Unable to submit this form, please try again.' ) ); } return $result; }