bp_groups_activity_feed()
Hook group activity feed to
.Description Description
Source Source
File: bp-groups/bp-groups-template.php
function bp_groups_activity_feed() {
// Bail if not viewing a single group or activity is not active.
if ( ! bp_is_active( 'groups' ) || ! bp_is_active( 'activity' ) || ! bp_is_group() ) {
return;
} ?>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo( 'name' ) ?> | <?php echo esc_attr( bp_get_current_group_name() ); ?> | <?php _e( 'Group Activity RSS Feed', 'buddypress' ) ?>" href="<?php bp_group_activity_feed_link() ?>" />
<?php
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.5.0 | Introduced. |