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

常用函数get_categories()

时间:2016-09-17 00:28:09      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

作用跟wp_list_categories()相同,但是布局更加灵活。

使用例子:

<?php
$args=array(
‘orderby‘ => ‘name‘,
‘order‘ => ‘ASC‘
);
$categories=get_categories($args);
foreach($categories as $category) {
echo ‘ <li class="cat-‘. $category-> slug .‘">‘;
echo ‘ <a href="‘ . get_category_link( $category->term_id ) . ‘" title="‘ . sprintf( __( "View all posts in %s" ), $category->name ) . ‘" ‘ . ‘>‘ . $category->name.‘ </a>‘;
echo ‘ </li>‘;
}
?>

输出html:

<li class="cat-normal"> <a href="#" title="View all posts in normal">normal </a> </li>

常见参数说明:

参数用途参数值
type 需检索的分类类型 post , link
child_of  只显示此参数确定的分类的子分类  
orderby 按什么排序

ID — 默认
,name

order 升序或降序

asc,desc

hide_empty 是否隐藏没有文章的分类

1,0

exclude 排除一个或多个分类。  
number 将要返回的类别数量  

 

常用函数get_categories()

标签:

原文地址:http://www.cnblogs.com/tinyphp/p/5877690.html

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