Make WordPress Core

Ticket #16441: 16441.patch

File 16441.patch, 2.0 KB (added by SergeyBiryukov, 13 years ago)
  • wp-content/themes/twentyeleven/archive.php

     
    2424                                                <?php if ( is_day() ) : ?>
    2525                                                        <?php printf( __( 'Daily Archives: %s', 'twentyeleven' ), '<span>' . get_the_date() . '</span>' ); ?>
    2626                                                <?php elseif ( is_month() ) : ?>
    27                                                         <?php printf( __( 'Monthly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( 'F Y' ) . '</span>' ); ?>
     27                                                        <?php printf( __( 'Monthly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( __( 'F Y', 'twentyeleven' ) ) . '</span>' ); ?>
    2828                                                <?php elseif ( is_year() ) : ?>
    29                                                         <?php printf( __( 'Yearly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( 'Y' ) . '</span>' ); ?>
     29                                                        <?php printf( __( 'Yearly Archives: %s', 'twentyeleven' ), '<span>' . get_the_date( __( 'Y', 'twentyeleven' ) ) . '</span>' ); ?>
    3030                                                <?php else : ?>
    3131                                                        <?php _e( 'Blog Archives', 'twentyeleven' ); ?>
    3232                                                <?php endif; ?>
  • wp-content/themes/twentyten/archive.php

     
    3232<?php if ( is_day() ) : ?>
    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', 'twentyten' ) ) ); ?>
    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', 'twentyten' ) ) ); ?>
    3838<?php else : ?>
    3939                                <?php _e( 'Blog Archives', 'twentyten' ); ?>
    4040<?php endif; ?>