WordPress 判断当前分类是否有子分类,是使用 get_term_children( int $term_id, string $taxonomy) 函数进行判断。category(分类)是一种 taxonomy,然后调用该函数,参数为该 category(分类)的 term_id 和 taxonomy,如果该分类含有子分类,那么该函数返回一个 term_id 数组,该数组中的元素是该分类的所有子分类的 term_id。而如果该分类没有子分类,则返回一个空的数组。
<?php
global $cat; //获取当前分类
$cat_term_id = get_category($cat)->term_id; // 得到该分类的 term_id
$cat_taxonomy = get_category($cat)->taxonomy; // 得到当前分类的 taxonomy
if(sizeof(get_term_children($cat_term_id,$cat_taxonomy)) != 0) // 判断该函数返回的数组的长度
{
// 有子分类
}
else
{
// 没有子分类
}
?>
通过判断当前分类是否有子分类,可以实现一级分类和二级子分类分别调用不同的模板。
<?php
global $cat; //获取当前分类
$cat_term_id = get_category($cat)->term_id; // 得到该分类的 term_id
$cat_taxonomy = get_category($cat)->taxonomy; // 得到当前分类的 taxonomy
if(sizeof(get_term_children($cat_term_id,$cat_taxonomy)) != 0) // 判断该函数返回的数组的长度
{
include(TEMPLATEPATH . '/category-ffl.php');
}
else
{
include(TEMPLATEPATH . '/category-zfl.php');
}
?>
专业提供WordPress主题安装、深度汉化、加速优化等各类网站建设服务,详询在线客服!