home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Blogs / wordpress2.6.exe / wordpress2.6 / wp-rdf.php < prev    next >
Encoding:
PHP Script  |  2008-05-25  |  473 b   |  23 lines

  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. ?>