use the_content on content.php instead the_excerpt

This commit is contained in:
Holger Koenemann 2014-12-12 11:20:41 +01:00
parent 52571f8747
commit 1d4c9d0feb
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
<?php <?php
/* translators: %s: Name of current post */ /* translators: %s: Name of current post */
the_excerpt( sprintf( the_content( sprintf(
__( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'understrap' ), __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'understrap' ),
the_title( '<span class="screen-reader-text">"', '"</span>', false ) the_title( '<span class="screen-reader-text">"', '"</span>', false )
) ); ) );