Merge pull request #516 from chrisdc/continue_reading_link

Add post title to the continue reading link for context.
This commit is contained in:
Konstantin Obenland 2014-09-04 13:43:31 -07:00
commit f136ddd333
1 changed files with 9 additions and 2 deletions

View File

@ -16,7 +16,14 @@
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', '_s' ) ); ?>
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', '_s' ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
) );
?>
<?php
wp_link_pages( array(
'before' => '<div class="page-links">' . __( 'Pages:', '_s' ),
@ -54,4 +61,4 @@
<?php edit_post_link( __( 'Edit', '_s' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-footer -->
</article><!-- #post-## -->
</article><!-- #post-## -->