- Timestamp:
- 07/09/2019 01:08:47 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/functions.php
r45485 r45609 362 362 // Add a page number if necessary. 363 363 if ( ( $paged >= 2 || $page >= 2 ) && ! is_404() ) { 364 /* translators: %s: page number */ 364 365 $title = "$title $sep " . sprintf( __( 'Page %s', 'twentythirteen' ), max( $paged, $page ) ); 365 366 } … … 497 498 '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s" rel="author">%3$s</a></span>', 498 499 esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), 500 /* translators: %s: author display name */ 499 501 esc_attr( sprintf( __( 'View all posts by %s', 'twentythirteen' ), get_the_author() ) ), 500 502 get_the_author() … … 517 519 function twentythirteen_entry_date( $echo = true ) { 518 520 if ( has_post_format( array( 'chat', 'status' ) ) ) { 521 /* translators: 1: post format name, 2: date */ 519 522 $format_prefix = _x( '%1$s on %2$s', '1: post format name. 2: date', 'twentythirteen' ); 520 523 } else { … … 525 528 '<span class="date"><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a></span>', 526 529 esc_url( get_permalink() ), 530 /* translators: %s: post title */ 527 531 esc_attr( sprintf( __( 'Permalink to %s', 'twentythirteen' ), the_title_attribute( 'echo=0' ) ) ), 528 532 esc_attr( get_the_date( 'c' ) ),
Note: See TracChangeset
for help on using the changeset viewer.