根据父分类调用wordpress分类列表模板

以分类ID为4的父分类作为例子 if (cat_is_ancestor_of(4, $cat)) { get_template_part('category-4-child'); } else { get_template_part('category'); } 将代码放到要调用的分类模板中即可