bbp_theme_after_reply_admin_links
The evolve bbp theme after reply admin links hook.
Description
do_action( 'bbp_theme_after_reply_admin_links' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bbp_theme_after_reply_admin_links' );
- The following example is for adding a hook callback.
- // define the bbp_theme_after_reply_admin_links callback
- function action_bbp_theme_after_reply_admin_links( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bbp_theme_after_reply_admin_links', 'action_bbp_theme_after_reply_admin_links', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bbp_theme_after_reply_admin_links', 'action_bbp_theme_after_reply_admin_links', 10, 0 );
Defined (1)
The action is defined in the following location(s).
- /bbpress/loop-single-reply.php
- do_action('bbp_theme_after_reply_admin_links');