bp_live_spammer_redirect
Filters the url used for redirection for a logged in user marked as spam.
Description
Parameters (1)
- 0. $add_query_arg (string) =>
add_query_arg( $args, wp_login_url() )
- URL to redirect user to.
Usage
- To run the hook, copy the example below.
- $add_query_arg = apply_filters( 'bp_live_spammer_redirect', $add_query_arg );
- if ( !empty( $add_query_arg ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bp_live_spammer_redirect callback
- function filter_bp_live_spammer_redirect( $add_query_arg ) {
- // make filter magic happen here...
- return $add_query_arg;
- };
- // add the filter
- add_filter( 'bp_live_spammer_redirect', 'filter_bp_live_spammer_redirect', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bp_live_spammer_redirect', 'filter_bp_live_spammer_redirect', 10, 1 );
Defined (1)
The filter is defined in the following location(s).
- /bp-members/bp-members-functions.php
- $login_url = apply_filters( 'bp_live_spammer_redirect', add_query_arg( $args, wp_login_url() ) );