bp_get_signup_blog_url_value()

Get the ‘signup_blog_url’ value submitted at signup.

Description

Return

(string)

Source

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

2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
function bp_get_signup_blog_url_value() {
    $value = '';
    if ( isset( $_POST['signup_blog_url'] ) )
        $value = $_POST['signup_blog_url'];
 
    /**
     * Filters the 'signup_blog_url' value submitted during signup.
     *
     * @since BuddyPress 1.1.0
     *
     * @param string $value 'signup_blog_url' value submitted during signup.
     */
    return apply_filters( 'bp_get_signup_blog_url_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.