bp_get_signup_page()
Get the URL to the signup page.
Description Description
Return Return
(string)
Source Source
File: bp-members/bp-members-template.php
function bp_get_signup_page() { if ( bp_has_custom_signup_page() ) { $page = trailingslashit( bp_get_root_domain() . '/' . bp_get_signup_slug() ); } else { $page = bp_get_root_domain() . '/wp-signup.php'; } /** * Filters the URL to the signup page. * * @since 1.1.0 * * @param string $page URL to the signup page. */ return apply_filters( 'bp_get_signup_page', $page ); }
Changelog Changelog
Version | Description |
---|---|
1.1.0 | Introduced. |