bp_after_activity_entry_comments
Fires after the display of the activity entry comments.
Description
do_action( 'bp_after_activity_entry_comments' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_after_activity_entry_comments' );
- The following example is for adding a hook callback.
- // define the bp_after_activity_entry_comments callback
- function action_bp_after_activity_entry_comments( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_after_activity_entry_comments', 'action_bp_after_activity_entry_comments', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_after_activity_entry_comments', 'action_bp_after_activity_entry_comments', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /bp-themes/bp-default/activity/entry.php
- <?php do_action( 'bp_after_activity_entry_comments' ); ?>
- /bp-templates/bp-legacy/buddypress/activity/entry.php
- do_action( 'bp_after_activity_entry_comments' ); ?>