Changeset 26679
- Timestamp:
- 12/05/2013 06:30:34 PM (11 years ago)
- Location:
- trunk/src/wp-content/themes/twentyfourteen
- Files:
-
- 2 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 : -
trunk/src/wp-content/themes/twentyfourteen/taxonomy-post_format.php
r26674 r26679 9 9 * @todo http://core.trac.wordpress.org/ticket/23257: Add plural versions of Post Format strings 10 10 * and remove plurals below. 11 * 11 * 12 12 * @link http://codex.wordpress.org/Template_Hierarchy 13 13 *
Note: See TracChangeset
for help on using the changeset viewer.