Changeset 26679 for trunk/src/wp-content/themes/twentyfourteen/archive.php
- Timestamp:
- 12/05/2013 06:30:34 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/archive.php
r26576 r26679 29 29 <?php 30 30 if ( is_day() ) : 31 printf( __( 'Da y: %s', 'twentyfourteen' ), get_the_date() );31 printf( __( 'Daily Archives: %s', 'twentyfourteen' ), get_the_date() ); 32 32 33 33 elseif ( is_month() ) : 34 printf( __( 'Month : %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) );34 printf( __( 'Monthly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'F Y', 'monthly archives date format', 'twentyfourteen' ) ) ); 35 35 36 36 elseif ( is_year() ) : 37 printf( __( 'Year : %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) );37 printf( __( 'Yearly Archives: %s', 'twentyfourteen' ), get_the_date( _x( 'Y', 'yearly archives date format', 'twentyfourteen' ) ) ); 38 38 39 39 else :
Note: See TracChangeset
for help on using the changeset viewer.