From bf2f730177492603c9174b5024ca912531d5baed Mon Sep 17 00:00:00 2001 From: ryan 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: http://svn.automattic.com/wordpress/trunk@6763 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 de30a8398..ee955a976 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) ) {