Make WordPress Core


Ignore:
Timestamp:
11/19/2010 05:37:47 AM (14 years ago)
Author:
nacin
Message:

Twenty Ten code cleanups. props lancewillett, fixes #15476.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-content/themes/twentyten/archive.php

    r15226 r16480  
    3333                <?php printf( __( 'Daily Archives: <span>%s</span>', 'twentyten' ), get_the_date() ); ?>
    3434<?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' ) ); ?>
    3636<?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' ) ); ?>
    3838<?php else : ?>
    3939                <?php _e( 'Blog Archives', 'twentyten' ); ?>
Note: See TracChangeset for help on using the changeset viewer.