Changeset 45932 for trunk/src/wp-content/themes/twentythirteen/archive.php
- Timestamp:
- 09/03/2019 12:39:13 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentythirteen/archive.php
r45609 r45932 28 28 <?php 29 29 if ( is_day() ) { 30 /* translators: %s: date*/30 /* translators: %s: Date. */ 31 31 printf( __( 'Daily Archives: %s', 'twentythirteen' ), get_the_date() ); 32 32 } elseif ( is_month() ) { 33 /* translators: %s: date*/33 /* translators: %s: Date. */ 34 34 printf( __( 'Monthly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentythirteen' ) ) ); 35 35 } elseif ( is_year() ) { 36 /* translators: %s: date*/36 /* translators: %s: Date. */ 37 37 printf( __( 'Yearly Archives: %s', 'twentythirteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentythirteen' ) ) ); 38 38 } else {
Note: See TracChangeset
for help on using the changeset viewer.