diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index 2bfa6b6098..6ddc4b34ed 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -262,8 +262,17 @@ function get_the_content( $more_link_text = null, $strip_teaser = false ) { $post = get_post(); - if ( null === $more_link_text ) - $more_link_text = __( '(more…)' ); + if ( null === $more_link_text ) { + $more_link_text = sprintf( + '%2$s', + sprintf( + /* translators: %s: Name of current post */ + __( 'Continue reading %s' ), + the_title_attribute( array( 'echo' => false ) ) + ), + __( '(more…)' ) + ); + } $output = ''; $has_teaser = false; diff --git a/wp-includes/version.php b/wp-includes/version.php index 0f366e768f..9b6a63772c 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-alpha-37705'; +$wp_version = '4.6-alpha-37706'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.