Warning: This function has been deprecated.
bp_get_activity_content()
Return the activity content.
Description Description
Return Return
(string) The activity content.
Source Source
File: bp-activity/bp-activity-template.php
function bp_get_activity_content() {
/**
* If you want to filter activity update content, please use
* the filter 'bp_get_activity_content_body'.
*
* This function is mainly for backwards compatibility.
*/
$content = bp_get_activity_action() . ' ' . bp_get_activity_content_body();
return apply_filters( 'bp_get_activity_content', $content );
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.0 | This function has been deprecated. |
| 1.0.0 | Introduced. |