From d9127f97e197214faa6b454d563fb7073d769d1e Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Sat, 9 Feb 2008 00:19:48 +0000 Subject: [PATCH] Show full content, including content after the more tag, for feeds. fixes #2582 git-svn-id: https://develop.svn.wordpress.org/trunk@6763 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/query.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index de30a83986..ee955a976d 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1559,7 +1559,7 @@ function setup_postdata($post) { $page = get_query_var('page'); if ( !$page ) $page = 1; - if ( is_single() || is_page() ) + if ( is_single() || is_page() || is_feed() ) $more = 1; $content = $post->post_content; if ( preg_match('//', $content) ) {