summaryrefslogtreecommitdiffstats
path: root/wp-includes/functions.php
diff options
context:
space:
mode:
Diffstat (limited to 'wp-includes/functions.php')
-rw-r--r--wp-includes/functions.php17
1 files changed, 2 insertions, 15 deletions
diff --git a/wp-includes/functions.php b/wp-includes/functions.php
index ca65479..4ae978a 100644
--- a/wp-includes/functions.php
+++ b/wp-includes/functions.php
@@ -962,23 +962,10 @@ function do_feed() {
$feed = preg_replace('/^_+/', '', $feed);
if ( $feed == '' || $feed == 'feed' )
- $feed = 'rss2';
-
- $for_comments = false;
-
- if ( is_singular() || get_query_var('withcomments') == 1 )
- $for_comments = true;
-
- if ( false !== strpos($feed, 'comments-') ) {
- $for_comments = true;
- $feed = str_replace('comments-', '', $feed);
- }
-
- if ( get_query_var('withoutcomments') == 1 )
- $for_comments = false;
+ $feed = 'rss2';
$hook = 'do_feed_' . $feed;
- do_action($hook, $for_comments);
+ do_action($hook, $wp_query->is_comment_feed);
}
function do_feed_rdf() {