Changeset 1950
- Timestamp:
- 10/07/2015 09:47:20 PM (9 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/themes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/content.php
r2 r1950 23 23 <?php else : ?> 24 24 <div class="entry-content"> 25 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wcbs' ) ); ?> 25 <?php the_content( sprintf( 26 // translators: The title of the post to continue reading 27 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wcbs' ), 28 the_title( '<span class="assistive-text">', '</span> ', false ) 29 ) ); ?> 26 30 <?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'wcbs' ), 'after' => '</div>' ) ); ?> 27 31 </div><!-- .entry-content --> -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base-v2/lib/utils/twentyten-functions.php
r2 r1950 232 232 */ 233 233 function twentyten_continue_reading_link() { 234 return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'wordcampbase' ) . '</a>'; 234 $link = sprintf( 235 ' <a href="%s">%s</a>', 236 esc_url( get_permalink() ), 237 sprintf( 238 // translators: The title of the post to continue reading 239 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcampbase' ), 240 sprintf( '<span class="assistive-text">%s</span> ', get_the_title() ) 241 ) 242 ); 243 244 return $link; 235 245 } 236 246 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/attachment.php
r478 r1950 103 103 <div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div> 104 104 105 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wordcampbase' ) ); ?> 105 <?php the_content( sprintf( 106 // translators: The title of the post to continue reading 107 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcampbase' ), 108 the_title( '<span class="screen-reader-text">', '</span> ', false ) 109 ) ); ?> 106 110 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?> 107 111 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/lib/utils/twentyten-functions.php
r2 r1950 234 234 */ 235 235 function twentyten_continue_reading_link() { 236 return ' <a href="'. get_permalink() . '">' . __( 'Continue reading <span class="meta-nav">→</span>', 'wordcampbase' ) . '</a>'; 236 $link = sprintf( 237 ' <a href="%s">%s</a>', 238 esc_url( get_permalink() ), 239 sprintf( 240 // translators: The title of the post to continue reading 241 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcampbase' ), 242 sprintf( '<span class="screen-reader-text">%s</span> ', get_the_title() ) 243 ) 244 ); 245 246 return $link; 237 247 } 238 248 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop-attachment.php
r2 r1950 102 102 <div class="entry-caption"><?php if ( !empty( $post->post_excerpt ) ) the_excerpt(); ?></div> 103 103 104 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wordcampbase' ) ); ?> 104 <?php the_content( sprintf( 105 // translators: The title of the post to continue reading 106 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcampbase' ), 107 the_title( '<span class="screen-reader-text">', '</span> ', false ) 108 ) ); ?> 105 109 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?> 106 110 -
sites/trunk/wordcamp.org/public_html/wp-content/themes/wordcamp-base/loop.php
r2 r1950 136 136 <?php else : ?> 137 137 <div class="entry-content"> 138 <?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'wordcampbase' ) ); ?> 138 <?php the_content( sprintf( 139 // translators: The title of the post to continue reading 140 __( 'Continue reading %s <span class="meta-nav">→</span>', 'wordcampbase' ), 141 the_title( '<span class="screen-reader-text">', '</span> ', false ) 142 ) ); ?> 139 143 <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'wordcampbase' ), 'after' => '</div>' ) ); ?> 140 144 </div><!-- .entry-content -->
Note: See TracChangeset
for help on using the changeset viewer.