bp_get_group_activity_feed_link()

Return the current group activity-stream RSS URL.

Description

Return

(string)

Source

File: bp-groups/bp-groups-template.php

7196
7197
7198
7199
7200
7201
7202
7203
7204
7205
7206
7207
7208
7209
function bp_get_group_activity_feed_link() {
    $current_group = groups_get_current_group();
    $group_link    = bp_get_group_permalink( $current_group ) . 'feed';
    $feed_link     = trailingslashit( $group_link );
 
    /**
     * Filters the current group activity-stream RSS URL.
     *
     * @since BuddyPress 1.2.0
     *
     * @param string $feed_link Current group activity-stream RSS URL.
     */
    return apply_filters( 'bp_get_group_activity_feed_link', $feed_link );
}

Changelog

Changelog
Version Description
BuddyPress 1.5.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.