2006-11-19 07:56:05 +00:00
|
|
|
<?php
|
2008-05-25 15:50:15 +00:00
|
|
|
/**
|
|
|
|
* Outputs the RSS2 XML format comment feed using the feed-rss2.php file in
|
|
|
|
* wp-includes folder. This file only sets the feed format and includes the
|
|
|
|
* feed-rss2-comments.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 comment feed is /index.php?feed=rss2&withcomments=1
|
|
|
|
* with permalinks off.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2005-06-10 23:15:13 +00:00
|
|
|
|
|
|
|
if (empty($wp)) {
|
2008-05-21 05:59:27 +00:00
|
|
|
require_once('./wp-load.php');
|
2005-06-10 23:15:13 +00:00
|
|
|
wp('feed=rss2&withcomments=1');
|
2004-02-05 20:55:50 +00:00
|
|
|
}
|
|
|
|
|
2007-02-23 02:50:05 +00:00
|
|
|
require (ABSPATH . WPINC . '/feed-rss2-comments.php');
|
2003-09-28 18:19:10 +00:00
|
|
|
|
2007-02-23 02:50:05 +00:00
|
|
|
?>
|