~canonical-sysadmins/wordpress/4.1.3

« back to all changes in this revision

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

  • Committer: Nick Moffitt
  • Date: 2015-01-15 11:05:37 UTC
  • mfrom: (1.1.1 wp4-upstream)
  • Revision ID: nick.moffitt@canonical.com-20150115110537-8bp1y42eyg0jsa7c
Tags: 4.1
MergeĀ upstreamĀ versionĀ 4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
        <div class="entry-content">
23
23
                <div class="audio-content">
24
 
                        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>', 'twentythirteen' ) ); ?>
25
 
                        <?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>' ) ); ?>
 
24
                        <?php
 
25
                        /* translators: %s: Name of current post */
 
26
                        the_content( sprintf(
 
27
                                __( 'Continue reading %s <span class="meta-nav">&rarr;</span>', 'twentythirteen' ),
 
28
                                the_title( '<span class="screen-reader-text">', '</span>', false )
 
29
                        ) );
 
30
 
 
31
                        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>' ) );
 
32
                ?>
26
33
                </div><!-- .audio-content -->
27
34
        </div><!-- .entry-content -->
28
35