bp_custom_register_page_url( string $default = '' )
Register page URL.
Description
Parameters
- $default
-
(Optional) Fallback value if not found in the database. Default: Empty string.
Default value: ''
Return
(string) URL of register page.
Source
File: bp-core/bp-core-options.php
function bp_custom_register_page_url( $default = '' ) {
/**
* Filters custom registration page URL.
*
* @since BuddyBoss 1.2.8
*
* @param string $value custom registration page URL.
*/
return apply_filters( 'bp_custom_register_page_url', bp_get_option( 'register-page-url', $default ) );
}
Changelog
| Version | Description |
|---|---|
| BuddyBoss 1.2.8 | 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.