- File:
-
- 1 edited
-
trunk/wp-content/themes/twentyten/archive.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentyten/archive.php
r15226 r16727 33 33 <?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?> 34 34 <?php elseif ( is_month() ) : ?> 35 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y') ); ?>35 <?php printf( __( 'Monthly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'F Y' ) ); ?> 36 36 <?php elseif ( is_year() ) : ?> 37 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'Y') ); ?>37 <?php printf( __( 'Yearly Archives: <span>%s</span>', 'twentyten' ), get_the_date( 'Y' ) ); ?> 38 38 <?php else : ?> 39 39 <?php _e( 'Blog Archives', 'twentyten' ); ?> … … 50 50 /* Run the loop for the archives page to output the posts. 51 51 * If you want to overload this in a child theme then include a file 52 * called loop-archive s.php and that will be used instead.52 * called loop-archive.php and that will be used instead. 53 53 */ 54 54 get_template_part( 'loop', 'archive' );
Note: See TracChangeset
for help on using the changeset viewer.