Source for file rss2.php
Documentation is available at rss2.php
* This template generates an RSS 2.0 feed for the requested blog
* See {@link http://backend.userland.com/rss}
* b2evolution - {@link http://b2evolution.net/}
* Released under GNU GPL License - {@link http://b2evolution.net/about/license.html}
* @copyright (c)2003-2005 by Francois PLANQUE - {@link http://fplanque.net/}
$skin =
''; // We don't want this do be displayed in a skin !
$show_statuses =
array(); // Restrict to published posts
$timestamp_min =
''; // Show past
$timestamp_max =
'now'; // Hide future
$resolve_extra_path =
false; // We don't want extra path resolution on this page
require
dirname(__FILE__
).
'/../b2evocore/_blog_main.php' ;
header("Content-type: application/xml");
echo
"<?xml version=\"1.0\"?".
">";
<!-- generator="b2evolution/
<?php echo
$b2_version ?>" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/">
$Blog->disp( 'name', 'xml' );
<link>
<?php $Blog->disp( 'blogurl', 'xml' ) ?></link>
<description>
<?php $Blog->disp( 'shortdesc', 'xml' ) ?></description>
<language>
<?php $Blog->disp( 'locale', 'xml' ) ?></language>
<docs>http://backend.userland.com/rss</docs>
<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=
<?php echo
$b2_version ?>"/>
<?php while( $Item =
$MainList->get_item() ) { ?>
<title>
<?php $Item->title( '', '', false, 'xml' ) ?></title>
<link>
<?php $Item->permalink( 'single' ) ?></link>
<pubDate>
<?php $Item->issue_date( 'r', true ) ?></pubDate>
<?php // Disabled because of spambots: <author><php the_author_email( 'xml' ) ></author>?>
<?php $Item->categories( false, '<category domain="main">', '</category>', '<category domain="alt">', '</category>', '<category domain="external">', '</category>', "\n", 'xml' ) ?>
<guid isPermaLink="false">
<?php the_ID() ?>@
<?php echo
$baseurl ?></guid>
$Item->url_link( '', ' ', 'xml' );
$Item->content( 1, false, T_('[...] Read more!'), '', '', '', 'xml', $rss_excerpt_length );
<content:encoded><![CDATA[
<?php
$Item->url_link( '<p>', '</p>' );
<?php log_hit(); // log the hit on this page ?>