bp_get_activity_feed_item_link()
Return the activity feed item link.
Description Description
Return Return
(string) The activity feed item link.
Source Source
File: bp-activity/bp-activity-template.php
function bp_get_activity_feed_item_link() { global $activities_template; $retval = ! empty( $activities_template->activity->primary_link ) ? $activities_template->activity->primary_link : ''; /** * Filters the activity feed item link. * * @since 1.0.0 * * @param string $retval The URL for the activity feed item. */ return apply_filters( 'bp_get_activity_feed_item_link', $retval ); }
Changelog Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |