bp_get_signup_confirm_email_value()
Get the confirm email address submitted during signup.
Description
Return
(string)
Source
File: bp-members/bp-members-template.php
function bp_get_signup_confirm_email_value() {
$value = '';
if ( isset( $_POST['signup_email_confirm'] ) ) {
$value = sanitize_email( $_POST['signup_email_confirm'] );
}
/**
* Filters the confirm email address submitted during signup.
*
* @since BuddyBoss 1.1.6
*
* @param string $value Email address submitted during signup.
*/
return apply_filters( 'bp_get_signup_confirm_email_value', $value );
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.1.6 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.