开发者 | |
---|---|
更新时间 | 2009年6月23日 20:52 |
捐献地址: | 去捐款 |
PHP版本: | 2.8 及以上 |
WordPress版本: | 2.8 |
<?= get_chc(); >
in your category template, to find at category.php in your
template directory. If there is no category.php (like in Kubrick) look out for archive.php and column
<?php /* If this is a category archive */ if (is_category()) { ?> <h2 class="pagetitle"><?php printf(__('Archive for the ‘%s’ Category', 'kubrick'), single_cat_title('', false)); ?></h2>
and insert <?= get_chc(); >
directly after this, or wherever you want.
For the "Tag Header" you have to insert <?= get_thc(); >
in your tag template, to find at archive.php in the template directory.
Shortly after if (is_tag()) {No.