bp_get_activation_page()
Get the URL of the activation page.
Description Description
Return Return
(string)
Source Source
File: bp-members/bp-members-template.php
function bp_get_activation_page() {
if ( bp_has_custom_activation_page() ) {
$page = trailingslashit( bp_get_root_domain() . '/' . bp_get_activate_slug() );
} else {
$page = trailingslashit( bp_get_root_domain() ) . 'wp-activate.php';
}
/**
* Filters the URL of the activation page.
*
* @since 1.2.0
*
* @param string $page URL to the activation page.
*/
return apply_filters( 'bp_get_activation_page', $page );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.2.0 | Introduced. |