bbp_edit_reply_redirect_to
The bbPress bbp edit reply redirect to hook.
Description
Parameters (2)
- 0. $reply_url (unknown)
- The reply url.
- 1. $redirect_to (unknown)
- The redirect to.
Usage
- To run the hook, copy the example below.
- $reply_url = apply_filters( 'bbp_edit_reply_redirect_to', $reply_url, $redirect_to );
- if ( !empty( $reply_url ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bbp_edit_reply_redirect_to callback
- function filter_bbp_edit_reply_redirect_to( $reply_url, $redirect_to ) {
- // make filter magic happen here...
- return $reply_url;
- };
- // add the filter
- add_filter( 'bbp_edit_reply_redirect_to', 'filter_bbp_edit_reply_redirect_to', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bbp_edit_reply_redirect_to', 'filter_bbp_edit_reply_redirect_to', 10, 2 );
Defined (1)
The filter is defined in the following location(s).
- /includes/replies/functions.php
- $reply_url = apply_filters( 'bbp_edit_reply_redirect_to', $reply_url, $redirect_to );