WordPress函数get_all_category_ids以数组的形式返回所有分类的ID,在个性定制主题时非常有用,该函数没有任何参数。
描述
检索所有类别编号。
用法
<?php get_all_category_ids() ?>
参数
None.
返回值
(array)
Array ( [0] => 6 [1] => 9 [2] => 7 [3] => 1 [4] => 4 [5] => 5 [6] => 8 )
示例
以下示例将输出所有分类的链接列表:
$category_ids = get_all_category_ids();
foreach($category_ids as $id) {
echo '<li><a href="' . get_category_link($id) . '">' . get_cat_name($id) . '</a></li>';
}
历史
添加于 版本: 2.0.0
Deprecated: 4.0.0
源文件
get_all_category_ids() 函数的代码位于 wp-includes/category.php
.