bbp_get_activity_actions
bbp_get_activity_actions
Appears in: bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_get_activity_actions') is found 1 times:
- /includes/extend/buddypress/functions.php line 778774775776777778779780781782783784
*/
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'
)
) );
}
/**