bp_get_signup_email_value()

Get the email address submitted during signup.

Description

Return

(string)

Source

File: bp-members/bp-members-template.php

2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
function bp_get_signup_email_value() {
    $value = '';
    if ( isset( $_POST['signup_email'] ) )
        $value = $_POST['signup_email'];
 
    /**
     * Filters the email address submitted during signup.
     *
     * @since BuddyPress 1.1.0
     *
     * @param string $value Email address submitted during signup.
     */
    return apply_filters( 'bp_get_signup_email_value', $value );
}

Changelog

Changelog
Version Description
BuddyPress 1.1.0 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.