78模板网分享cms建站教程,提供网站模板、网站插件、办公模板等模板教程免费学习,找模板教程就上78模板网!

wordpress教程:wordpress调用当前分类的全部子分类

一流源码网分享wordpress在制作企业主题的时候比较常遇到要调用当前分类下的全部子分类。要实现这个可以按照以下步骤操作。

首先在主题的“functions.php”里面写个函数,代码如下:

PHP

// 获取子分类

function get_category_root_id($cat){

    $this_category = get_category($cat);

    while($this_category->category_parent) {

        $this_category = get_category($this_category->category_parent);

    }

    return $this_category->term_id;

}

然后在需要调用的页面里写以下代码:

PHP

<?php

if(is_category()) {

    $cat = get_query_var('cat');

    $categoryurl = get_category_link($cat);

    if(get_category_children(get_category_root_id(the_category_ID(false)))!= "" ) {

        echo wp_list_categories("child_of=".get_category_root_id(the_category_ID(false)). "&depth=0&hide_empty=0&title_li=&orderby=id&order=ASC");

    }

}

?>

最后自己调整下css就ok了。

本文链接:http://78moban.cn/post/2965.html

版权声明:站内所有文章皆来自网络转载,只供模板演示使用,并无任何其它意义!

联系技术
文章删除 友链合作 技术交流群
1050177837
公众号
公众号
公众号
返回顶部