bp_moderation_content_<new_status>
The WordPress Core bp moderation content new status hook.
Description
do_action( 'bp_moderation_content_<new_status>', (unknown) $cont_content_id, (unknown) $cont, (unknown) $reporters );
Parameters (3)
- 0. $cont_content_id (unknown)
- The cont content id.
- 1. $cont (unknown)
- The cont.
- 2. $reporters (unknown)
- The reporters.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_moderation_content_{$new_status}', $cont_content_id, $cont, $reporters );
- The following example is for adding a hook callback.
- // define the bp_moderation_content_<new_status> callback
- function action_bp_moderation_content_new_status( $cont_content_id, $cont, $reporters ) {
- // make action magic happen here...
- };
- // add the action
- add_action( "bp_moderation_content_{$new_status}", 'action_bp_moderation_content_new_status', 10, 3 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( "bp_moderation_content_{$new_status}", 'action_bp_moderation_content_new_status', 10, 3 );
Defined (1)
The action is defined in the following location(s).
- /classes/bpModBackendActions.php
- do_action("bp_moderation_content_$new_status", $cont->content_id, $cont, $reporters);