~canonical-sysadmins/wordpress/4.7

« back to all changes in this revision

Viewing changes to wp-content/themes/twentythirteen/content.php

  • Committer: Nick Moffitt
  • Date: 2015-01-15 11:04:26 UTC
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: nick.moffitt@canonical.com-20150115110426-5stm1p14cfnxrtme
New Upstream Version 4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
        </div><!-- .entry-summary -->
39
39
        <?php else : ?>
40
40
        <div class="entry-content">
41
 
                <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?>
42
 
                <?php wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?>
 
41
                <?php
 
42
                        /* translators: %s: Name of current post */
 
43
                        the_content( sprintf(
 
44
                                __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
 
45
                                the_title( '<span class="screen-reader-text">', '</span>', false )
 
46
                        ) );
 
47
 
 
48
                        wp_link_pages( array( 'before' => '<div class="page-links"><span class="page-links-title">' . __( 'Pages:', 'twentythirteen' ) . '</span>', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) );
 
49
                ?>
43
50
        </div><!-- .entry-content -->
44
51
        <?php endif; ?>
45
52