root/trunk/wp-rss.php

Revision 7991, 484 bytes (checked in by ryan, 1 month ago)

File file level phpdoc from jacobsantos. see #7037

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2 /**
3  * Outputs the RSS feed RDF format using the feed-rss.php
4  * file in wp-includes folder.
5  *
6  * This file only sets the feed format and includes the
7  * feed-rss.php.
8  *
9  * This file is no longer used in WordPress and while it is
10  * not deprecated now. This file will most likely be
11  * deprecated or removed in a later version.
12  *
13  * @package WordPress
14  */
15
16 if (empty($wp)) {
17     require_once('./wp-load.php');
18     wp('feed=rss');
19 }
20
21 require (ABSPATH . WPINC . '/feed-rss.php');
22
23 ?>
Note: See TracBrowser for help on using the browser.