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