root/trunk/wp-rdf.php
| Revision 7991, 473 bytes (checked in by ryan, 3 months ago) | |
|---|---|
| |
| 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 | ?> |
Note: See TracBrowser for help on using the browser.
