bp_get_signup_with_blog_value()
Get the ‘signup_with_blog’ value submitted during signup.
Description Description
Return Return
(string)
Source Source
File: bp-members/bp-members-template.php
function bp_get_signup_with_blog_value() { $value = ''; if ( isset( $_POST['signup_with_blog'] ) ) $value = $_POST['signup_with_blog']; /** * Filters the 'signup_with_blog' value submitted during signup. * * @since 1.1.0 * * @param string $value 'signup_with_blog' value submitted during signup. */ return apply_filters( 'bp_get_signup_with_blog_value', $value ); }
Changelog Changelog
Version | Description |
---|---|
1.1.0 | Introduced. |