bbp_get_activity_actions

bbp_get_activity_actions

Hook Type: filter

See hook in core

Displaying hooks found in version: bbpress.2.6.9

apply_filters('bbp_get_activity_actions') is found 1 times:

  • /includes/extend/buddypress/functions.php line 778
     */
    function bbp_get_activity_actions() {
    
    	// Filter & return
    	return (array) apply_filters( 'bbp_get_activity_actions', array(
    		'topic' => esc_html__( '%1$s started the topic %2$s in the forum %3$s',    'bbpress' ),
    		'reply' => esc_html__( '%1$s replied to the topic %2$s in the forum %3$s', 'bbpress' )
    	) );
    }
    
    /**