root/trunk/wp-rdf.php

Revision 1328, 474 bytes (checked in by donncha, 3 months ago)

WP Merge with revision 8075

  • Property svn:eol-style set to native
Line 
1 <?php
2 /**
3  * Outputs the RDF feed using the feed-rdf.php
4  * file in wp-includes folder.
5  *
6  * This file only sets the feed format and includes the
7  * feed-rdf.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=rdf');
19 }
20
21 require (ABSPATH . WPINC . '/feed-rdf.php');
22
23 ?>
24
Note: See TracBrowser for help on using the browser.