bpbbpst_forum_support_options_after_guides
The Buddy-bbPress Support Topic bpbbpst forum support options after guides hook.
Description
Parameters (1)
- 0. $array (array) =>
array( $forum->ID, $support_only_style )
- The array.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bpbbpst_forum_support_options_after_guides', $array );
- The following example is for adding a hook callback.
- // define the bpbbpst_forum_support_options_after_guides callback
- function action_bpbbpst_forum_support_options_after_guides( $array ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bpbbpst_forum_support_options_after_guides', 'action_bpbbpst_forum_support_options_after_guides', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bpbbpst_forum_support_options_after_guides', 'action_bpbbpst_forum_support_options_after_guides', 10, 1 );
Defined (1)
The action is defined in the following location(s).
- /includes/admin.php
- do_action_ref_array( 'bpbbpst_forum_support_options_after_guides', array( $forum->ID, $support_only_style ) );