Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r15226 r16727  
    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' ); ?>
     
    5050        /* Run the loop for the archives page to output the posts.
    5151         * If you want to overload this in a child theme then include a file
    52          * called loop-archives.php and that will be used instead.
     52         * called loop-archive.php and that will be used instead.
    5353         */
    5454         get_template_part( 'loop', 'archive' );
Note: See TracChangeset for help on using the changeset viewer.