Add hidden post title to the continue reading link

This commit is contained in:
Christopher Crouch 2014-06-19 22:18:22 +01:00
parent eb58df8d30
commit 23b5c08098
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' ),