在Wordpress 4.1之前,您可以使用以下代码显示日期存档页面标题:(从2144主题中选取并稍微修改)
if ( is_day() ) {
printf( __( \'Daily Archives: %s\', \'twentyfourteen\' ), get_the_date() );
} elseif ( is_month() ) {
printf( __( \'Monthly Archives: %s\', \'twentyfourteen\' ), get_the_date( _x( \'F Y\', \'monthly archives date format\', \'twentyfourteen\' ) ) );
} elseif ( is_year() ) {
printf( __( \'Yearly Archives: %s\', \'twentyfourteen\' ), get_the_date( _x( \'Y\', \'yearly archives date format\', \'twentyfourteen\' ) ) );
} else {
_e( \'Archives\', \'twentyfourteen\' );
}
从Wordpress 4.1开始,您可以使用以下功能之一