bbp_activity_reply_create

bbp_activity_reply_create

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_activity_reply_create') is found 1 times:

  • /includes/extend/buddypress/activity.php line 540
    		$forum_link      = '<a href="' . $forum_permalink . '">' . $forum_title . '</a>';
    
    		// Activity action & text
    		$activity_text    = sprintf( esc_html__( '%1$s replied to the topic %2$s in the forum %3$s', 'bbpress' ), $user_link, $topic_link, $forum_link );
    		$activity_action  = apply_filters( 'bbp_activity_reply_create',         $activity_text, $user_id, $reply_id,  $topic_id );
    		$activity_content = apply_filters( 'bbp_activity_reply_create_excerpt', $reply_content                                  );
    
    		// Compile and record the activity stream results
    		$activity_id = $this->record_activity( array(
    			'id'                => $this->get_activity_id( $reply_id ),
    			'user_id'           => $user_id,