bbp_get_activity_actions()

Return an array of allowed activity actions


Description Description


Return Return

(array)


Top ↑

Source Source

File: includes/extend/buddypress/functions.php

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' )
	) );
}

Top ↑

Changelog Changelog

Changelog
Version Description
2.6.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.