bp_get_activation_page
Filters the URL of the activation page.
Description
Parameters (1)
- 0. $page (string)
- URL to the activation page.
Usage
- To run the hook, copy the example below.
- $page = apply_filters( 'bp_get_activation_page', $page );
- if ( !empty( $page ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_get_activation_page callback
- function filter_bp_get_activation_page( $page ) {
- // make filter magic happen here...
- return $page;
- };
- // add the filter
- add_filter( 'bp_get_activation_page', 'filter_bp_get_activation_page', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_get_activation_page', 'filter_bp_get_activation_page', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-members/bp-members-template.php
- return apply_filters( 'bp_get_activation_page', $page );