码迷,mamicode.com
首页 > 其他好文 > 详细

黄聪:wordpress如何获取当前分类页面的ID、名称、别名(slug)

时间:2014-11-03 20:49:09      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   color   ar   sp   div   on   

 

<?
    global $wp_query;
    $cat_ID = get_query_var(‘cat‘);
    $category = get_category($cat_ID);
    echo $category->slug;

?>

 

get_category()    根据分类ID获得指定分类全部信息,以数组或是对象的形式返回,以下是该函数的返回值示例:

stdClass Object
(

     //ID 分类和标签混编

    [term_id] => 5

    //分类名

    [name] => Cat Name

    //分类别名

    [slug] => cat

    //N/A

    [term_group] => 0

    //同 term_id

    
[term_taxonomy_id] => 5

    //分类法,也就是分类还是标签

    [taxonomy] => category

    //分类描述

    [description] =>

    //父级ID

    [parent] => 70

    //N/A

    [count] => 0

    //分类ID

    [cat_ID] => 5

    //N/A

    [category_count] => 0

    //同 description

    [category_description] =>

    //同 name

    
[cat_name] => Category Name

    //同 slug

    [category_nicename] => category-name

    //同 parent

    [category_parent] => 70

)

 

get_cat_ID()    根据分类名称获取分类ID

get_cat_name()    根据分类ID获取分类名称

get_category_link()    根据分类ID获取分类的链接URL

黄聪:wordpress如何获取当前分类页面的ID、名称、别名(slug)

标签:des   style   blog   io   color   ar   sp   div   on   

原文地址:http://www.cnblogs.com/huangcong/p/4072089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!