diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 68a47fe540..0c456559c6 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -220,11 +220,11 @@ function get_the_content($more_link_text = null, $stripteaser = 0, $more_file = $output .= $teaser; if ( count($content) > 1 ) { if ( $more ) { - $output .= ''.$content[1]; + $output .= '' . $content[1]; } else { $output = balanceTags($output); if ( ! empty($more_link_text) ) - $output .= ' $more_link_text"; + $output .= apply_filters( 'the_content_more_link', ' $more_link_text", $more_link_text ); } }