以下代码用于在侧边栏中显示父类别(查看父类别时)的所有子类别,以及子类别(查看子类别时)的所有同级。php。相同的侧边栏被拉入帖子和页面。
我想更进一步,这样它在查看帖子时也能正常工作,而不仅仅是类别和子类别。在帖子中,我希望显示分配给帖子的所有子类别。花了无数个小时后,我不知所措。有人能帮我吗?
<ul>
<?php if (is_category( )) {
$cat = get_query_var(\'cat\');
$thiscat = get_category ($cat);
$parent = $thiscat->parent;
$img = get_option(\'z_taxonomy_image\' . $thiscat->term_id);
if ($parent != \'\') {
wp_list_categories( array(
\'child_of\' => $parent,
\'exclude\' => $cat,
\'title_li\' => 0
) );
}
else {
wp_list_categories( array(
\'child_of\' => $cat,
\'title_li\' => 0
) );
}
}
?>
</ul>