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) ) {