mirror of
https://gh.wpcy.net/https://github.com/buddypress/buddypress.git
synced 2026-05-31 05:04:29 +08:00
git-svn-id: https://buddypress.svn.wordpress.org/branches/1.0@1563 cdf35c40-ae34-48e0-9cc9-0c9da1808c22
46 lines
1.8 KiB
PHP
46 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* RSS2 Feed Template for displaying the site wide activity stream.
|
|
*
|
|
* @package BuddyPress
|
|
*/
|
|
|
|
header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
|
|
header('Status: 200 OK');
|
|
?>
|
|
<?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
|
|
|
|
<rss version="2.0"
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
<?php do_action('bp_activity_sitewide_feed'); ?>
|
|
>
|
|
|
|
<channel>
|
|
<title><?php echo get_site_option( 'site_name' ); ?> - <?php _e( 'Site Wide Activity', 'buddypress' ) ?></title>
|
|
<atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
|
|
<link><?php echo site_url() . '/' . $bp->activity->slug . '/feed' ?></link>
|
|
<description><?php _e( 'Site Wide Activity Feed', 'buddypress' ) ?></description>
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', bp_activity_get_last_updated(), false); ?></pubDate>
|
|
<generator>http://buddypress.org/?v=<?php echo BP_VERSION ?></generator>
|
|
<language><?php echo get_option('rss_language'); ?></language>
|
|
<?php do_action('bp_activity_sitewide_feed_head'); ?>
|
|
|
|
<?php if ( bp_has_activities( 'type=sitewide&max=50' ) ) : ?>
|
|
<?php while ( bp_activities() ) : bp_the_activity(); ?>
|
|
<item>
|
|
<guid><?php bp_activity_feed_item_guid() ?></guid>
|
|
<title><![CDATA[<?php bp_activity_feed_item_title() ?>]]></title>
|
|
<link><?php bp_activity_feed_item_link() ?></link>
|
|
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', bp_get_activity_feed_item_date(), false); ?></pubDate>
|
|
|
|
<description><![CDATA[<?php bp_activity_feed_item_description() ?>]]></description>
|
|
<?php do_action('bp_activity_personal_feed_item'); ?>
|
|
</item>
|
|
<?php endwhile; ?>
|
|
|
|
<?php endif; ?>
|
|
</channel>
|
|
</rss>
|