bp_after_group_forum_topic_posts
The BuddyPress bp after group forum topic posts hook.
Description
do_action( 'bp_after_group_forum_topic_posts' );
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'bp_after_group_forum_topic_posts' );
- The following example is for adding a hook callback.
- // define the bp_after_group_forum_topic_posts callback
- function action_bp_after_group_forum_topic_posts( ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'bp_after_group_forum_topic_posts', 'action_bp_after_group_forum_topic_posts', 10, 0 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'bp_after_group_forum_topic_posts', 'action_bp_after_group_forum_topic_posts', 10, 0 );
Defined (2)
The action is defined in the following location(s).
- /bp-themes/bp-default/groups/single/forum/topic.php
- <?php do_action( 'bp_after_group_forum_topic_posts' ); ?>
- /bp-templates/bp-legacy/buddypress/groups/single/forum/topic.php
- do_action( 'bp_after_group_forum_topic_posts' ); ?>