在我的自定义 WordPress 主题的 archives.php 文件中,我有以下代码:
<div class="page-title">
<?php
if ( is_day() ) :
printf( __( 'Daily Archives: %s', 'sturd' ), '<span>' . get_the_date() . '</span>' );
elseif ( is_month() ) :
printf( __( 'Monthly Archives: %s', 'sturd' ), '<span>' . get_the_date( _x( 'F Y', 'monthly archives date format', 'sturd' ) ) . '</span>' );
elseif ( is_year() ) :
printf( __( 'Yearly Archives: %s', 'sturd' ), '<span>' . get_the_date( _x( 'Y', 'yearly archives date format', 'sturd' ) ) . '</span>' );
else :
_e( 'Archives', 'sturd' );
endif;
?>
</div>
我希望有另一个声明,以便如果这是一个类别页面,它只在页面标题 div 中显示类别标题,而不仅仅是单词 Archives(就像它目前所做的那样)。
我希望这是张贴在正确的部分。
提前致谢。
山姆