Changeset 45932 for trunk/src/wp-content/themes/twentyten/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/twentyten/archive.php
r45609 r45932 34 34 <?php 35 35 if ( is_day() ) { 36 /* translators: %s: date*/36 /* translators: %s: Date. */ 37 37 printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); 38 38 } elseif ( is_month() ) { 39 /* translators: %s: date*/39 /* translators: %s: Date. */ 40 40 printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyten' ) ) ); 41 41 } elseif ( is_year() ) { 42 /* translators: %s: date*/42 /* translators: %s: Date. */ 43 43 printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyten' ) ) ); 44 44 } else {
Note: See TracChangeset
for help on using the changeset viewer.