为什么我的类别页面显示“发布于...”当我只想让它显示类别时?

时间:2011-04-15 作者:Maddy

请参阅:http://blog.studentlife.uiowa.edu/svp/categories/

我只是使用了一个空白的类别模板。我可以在代码中添加/更改什么,使其不会像帖子一样放在分类页面中?我只想让它列出类别,而不是剪切到页脚/侧边栏。

2 个回复
SO网友:Chad Von Lind

打开存档。php文件的空白主题,并从顶部删除此代码。

            <?php /* If this is a category archive */ if (is_category()) { ?>
            <h2>Archive for the &#8216;<?php single_cat_title(); ?>&#8217; Category</h2>

        <?php /* If this is a tag archive */ } elseif( is_tag() ) { ?>
            <h2>Posts Tagged &#8216;<?php single_tag_title(); ?>&#8217;</h2>

        <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
            <h2>Archive for <?php the_time(\'F jS, Y\'); ?></h2>

        <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
            <h2>Archive for <?php the_time(\'F, Y\'); ?></h2>

        <?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
            <h2 class="pagetitle">Archive for <?php the_time(\'Y\'); ?></h2>

        <?php /* If this is an author archive */ } elseif (is_author()) { ?>
            <h2 class="pagetitle">Author Archive</h2>

        <?php /* If this is a paged archive */ } elseif (isset($_GET[\'paged\']) && !empty($_GET[\'paged\'])) { ?>
            <h2 class="pagetitle">Blog Archives</h2>

        <?php } ?>

SO网友:Chip Bennett

“发布”位是/inc/meta.php 模板文件,该文件包含在archive.php.

您可以:

1) 修改/inc/meta.php

2) 修改archive.php 要删除此项,请包括

3) 添加一个category.php, 基于archive.php, 但忽略了/inc/meta.php

编辑:

排除类别存档的条件语句:

<?php if ( ! is_category() ) { 

     // we\'re not on a category archive; do something

} ?>
尝试将此包装在include() 对于/inc/meta.php

结束

相关推荐

为什么我有<?php wp_list_Categories>中的流弹?

在这个页面上,我在搜索工作导航的右侧有一个流弹?为什么会这样?也许我错过了一些简单的事情。我只是呆了一会儿。http://shs.merms.info/2010/12/30/shs-team-celebrates-successful-quarter/<ul> <li><?php wp_list_categories(\'title_li=<strong>Categories</strong><br />\'); ?>