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
2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 | 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.