<?php get_header(); ?>
<div id="container">
<div id="content" role="main">
<?php
if ( have_posts() )
the_post();
?>
<h1 class="page-title">
<?php if ( is_day() ) : ?>
<?php printf( __( 'Daily Archives: <span>%s</span>',
'Regal' ), get_the_date() ); ?>
<?php elseif ( is_month() ) : ?>
<?php printf( __( 'Monthly Archives: <span>
%s</span>', 'Regal' ), get_the_date('F Y') ); ?>
<?php elseif ( is_year() ) : ?>
<?php printf( __( 'Yearly Archives: <span>%s</span>',
'Regal' ), get_the_date('Y') ); ?>
<?php else : ?>
<?php _e( 'Blog Archives', 'Regal' ); ?>
<?php endif; ?>
</h1>
应该是把红色字体部分代码去掉就可以吧?试了一下还是不行
|