2004-05-24 20:24:12 +02:00
|
|
|
<?php
|
2008-05-25 17:50:15 +02:00
|
|
|
/**
|
|
|
|
* Outputs the RSS2 feed XML format using the feed-rss2.php file in wp-includes
|
|
|
|
* folder. This file only sets the feed format and includes the feed-rss2.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.
|
|
|
|
*
|
|
|
|
* The link for the rss2 feed is /index.php?feed=rss2 with permalinks off.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2004-05-24 20:24:12 +02:00
|
|
|
|
2005-06-11 01:15:13 +02:00
|
|
|
if (empty($wp)) {
|
2008-05-21 07:59:27 +02:00
|
|
|
require_once('./wp-load.php');
|
2005-06-11 01:15:13 +02:00
|
|
|
wp('feed=rss2');
|
2004-02-05 21:55:50 +01:00
|
|
|
}
|
2004-05-24 20:24:12 +02:00
|
|
|
|
2007-02-23 03:50:05 +01:00
|
|
|
require (ABSPATH . WPINC . '/feed-rss2.php');
|
2003-11-10 08:44:50 +01:00
|
|
|
|
2007-02-23 03:50:05 +01:00
|
|
|
?>
|