0

在我的自定义 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(就像它目前所做的那样)。

我希望这是张贴在正确的部分。

提前致谢。

山姆

4

1 回答 1

1

首先,我建议您熟悉 WP模板层次结构。我通常建议使用单独的 category.php 模板文件来显示类别,并使用single_cat_title()来显示类别名称。

如果要使用主archive.php 模板,可以添加is_category()子句,然后使用single_cat_title()获取名称。

于 2013-09-28T13:09:09.613 回答