2007-02-23 03:50:05 +01:00
|
|
|
<?php
|
2007-12-25 21:48:01 +01:00
|
|
|
/**
|
|
|
|
* RSS 1 RDF Feed Template for displaying RSS 1 Posts feed.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2009-01-19 06:04:58 +01:00
|
|
|
header('Content-Type: ' . feed_content_type('rdf') . '; charset=' . get_option('blog_charset'), true);
|
2007-02-23 03:50:05 +01:00
|
|
|
$more = 1;
|
|
|
|
|
2009-04-16 20:47:41 +02:00
|
|
|
echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?>
|
2007-02-23 03:50:05 +01:00
|
|
|
<rdf:RDF
|
|
|
|
xmlns="http://purl.org/rss/1.0/"
|
|
|
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
|
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
|
|
|
xmlns:admin="http://webns.net/mvcb/"
|
|
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
|
|
<?php do_action('rdf_ns'); ?>
|
|
|
|
>
|
|
|
|
<channel rdf:about="<?php bloginfo_rss("url") ?>">
|
2007-03-29 03:29:09 +02:00
|
|
|
<title><?php bloginfo_rss('name'); wp_title_rss(); ?></title>
|
2007-02-23 03:50:05 +01:00
|
|
|
<link><?php bloginfo_rss('url') ?></link>
|
|
|
|
<description><?php bloginfo_rss('description') ?></description>
|
|
|
|
<dc:date><?php echo mysql2date('Y-m-d\TH:i:s\Z', get_lastpostmodified('GMT'), false); ?></dc:date>
|
2009-04-07 19:42:17 +02:00
|
|
|
<sy:updatePeriod><?php echo apply_filters( 'rss_update_period', 'hourly' ); ?></sy:updatePeriod>
|
2010-02-07 04:43:52 +01:00
|
|
|
<sy:updateFrequency><?php echo apply_filters( 'rss_update_frequency', '1' ); ?></sy:updateFrequency>
|
2007-02-23 03:50:05 +01:00
|
|
|
<sy:updateBase>2000-01-01T12:00+00:00</sy:updateBase>
|
|
|
|
<?php do_action('rdf_header'); ?>
|
|
|
|
<items>
|
|
|
|
<rdf:Seq>
|
|
|
|
<?php while (have_posts()): the_post(); ?>
|
2007-08-21 20:27:45 +02:00
|
|
|
<rdf:li rdf:resource="<?php the_permalink_rss() ?>"/>
|
2007-02-23 03:50:05 +01:00
|
|
|
<?php endwhile; ?>
|
|
|
|
</rdf:Seq>
|
|
|
|
</items>
|
|
|
|
</channel>
|
|
|
|
<?php rewind_posts(); while (have_posts()): the_post(); ?>
|
2007-08-21 20:27:45 +02:00
|
|
|
<item rdf:about="<?php the_permalink_rss() ?>">
|
2007-02-23 03:50:05 +01:00
|
|
|
<title><?php the_title_rss() ?></title>
|
2007-08-21 20:27:45 +02:00
|
|
|
<link><?php the_permalink_rss() ?></link>
|
2007-02-23 03:50:05 +01:00
|
|
|
<dc:date><?php echo mysql2date('Y-m-d\TH:i:s\Z', $post->post_date_gmt, false); ?></dc:date>
|
|
|
|
<dc:creator><?php the_author() ?></dc:creator>
|
|
|
|
<?php the_category_rss('rdf') ?>
|
|
|
|
<?php if (get_option('rss_use_excerpt')) : ?>
|
|
|
|
<description><?php the_excerpt_rss() ?></description>
|
|
|
|
<?php else : ?>
|
2009-09-28 16:36:48 +02:00
|
|
|
<description><?php the_excerpt_rss() ?></description>
|
|
|
|
<content:encoded><![CDATA[<?php the_content_feed('rdf') ?>]]></content:encoded>
|
2007-02-23 03:50:05 +01:00
|
|
|
<?php endif; ?>
|
|
|
|
<?php do_action('rdf_item'); ?>
|
|
|
|
</item>
|
|
|
|
<?php endwhile; ?>
|
|
|
|
</rdf:RDF>
|