我想它看起来像这样:
<?php if (is_subcategory()): ?>
<h1><?php the_category(); ?></h1>
<?php else: ?>
<h1>something else</h1>
<?php endif ?>
有人可以告诉我应该如何写这个吗?
答案 0 :(得分:0)
试试这个:
<?php if ( is_category() ) {
$child_cats = get_categories('child_of='.get_query_var('cat'));
}?>
http://codex.wordpress.org/Function_Reference/get_categories