bp_get_activities_title()
Return the activities title.
Description Description
Return Return
(string) The activities title.
Source Source
File: bp-activity/bp-activity-template.php
function bp_get_activities_title() { global $bp_activity_title; /** * Filters the activities title for the activity template. * * @since 1.0.0 * * @param string $bp_activity_title The title to be displayed. */ return apply_filters( 'bp_get_activities_title', $bp_activity_title ); }
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |