bbp_toggle_reply_notice_admin
The bbPress bbp toggle reply notice admin hook.
Description
apply_filters( 'bbp_toggle_reply_notice_admin', (unknown) $message, (unknown) $reply_id, (unknown) $notice, (unknown) $is_failure );
Parameters (4)
- 0. $message (unknown)
- The message.
- 1. $reply_id (unknown)
- The reply id.
- 2. $notice (unknown)
- The notice.
- 3. $is_failure (unknown)
- The is failure.
Usage
- To run the hook, copy the example below.
- $message = apply_filters( 'bbp_toggle_reply_notice_admin', $message, $reply_id, $notice, $is_failure );
- if ( !empty( $message ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the bbp_toggle_reply_notice_admin callback
- function filter_bbp_toggle_reply_notice_admin( $message, $reply_id, $notice, $is_failure ) {
- // make filter magic happen here...
- return $message;
- };
- // add the filter
- add_filter( 'bbp_toggle_reply_notice_admin', 'filter_bbp_toggle_reply_notice_admin', 10, 4 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'bbp_toggle_reply_notice_admin', 'filter_bbp_toggle_reply_notice_admin', 10, 4 );
Defined (1)
The filter is defined in the following location(s).
- /includes/admin/replies.php
- $message = apply_filters( 'bbp_toggle_reply_notice_admin', $message, $reply->ID, $notice, $is_failure );