alx / alexgirard.com-blog

Personal blog

This URL has Read+Write access

alx (author)
Thu Aug 14 18:23:48 -0700 2008
commit  3fc946d302a683265a1c0b10d944e5721cc7dcbc
tree    e1347d5d496cb557632ce6a21a1718d350f3af55
parent  477446971cab5b8b8cdf4a28f8dfca3026f979a5
alexgirard.com-blog / wp-rss.php
100644 23 lines (20 sloc) 0.484 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
/**
* Outputs the RSS feed RDF format using the feed-rss.php
* file in wp-includes folder.
*
* This file only sets the feed format and includes the
* feed-rss.php.
*
* This file is no longer used in WordPress and while it is
* not deprecated now. This file will most likely be
* deprecated or removed in a later version.
*
* @package WordPress
*/
 
if (empty($wp)) {
require_once('./wp-load.php');
wp('feed=rss');
}
 
require (ABSPATH . WPINC . '/feed-rss.php');
 
?>