bp_activity_action_personal_feed()
Load a user’s personal activity feed.
Description
Return
(bool) False on failure.
Source
File: bp-activity/actions/feeds.php
function bp_activity_action_personal_feed() {
if ( ! bp_is_user_activity() || ! bp_is_current_action( 'feed' ) ) {
return false;
}
// Setup the feed.
buddypress()->activity->feed = new BP_Activity_Feed( array(
'id' => 'personal',
/* translators: Personal activity RSS title - "[Site Name] | [User Display Name] | Activity" */
'title' => sprintf( __( '%1$s | %2$s | Activity', 'buddyboss' ), bp_get_site_name(), bp_get_displayed_user_fullname() ),
'link' => trailingslashit( bp_displayed_user_domain() . bp_get_activity_slug() ),
'description' => sprintf( __( 'Activity feed for %s.', 'buddyboss' ), bp_get_displayed_user_fullname() ),
'activity_args' => 'user_id=' . bp_displayed_user_id()
) );
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 1.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.