在这里,我们将使用函数-get_categories()
要获取所有可用的类别并将其存储为数组,那么我们将遍历数组以显示列表。在foreach循环中,我们执行了一个条件检查,以确定类别是否为父类别(如果是),并打印它。
<?php
$categories = get_categories();
echo \'We have \';
foreach($categories as $category)
{
//to check if category is parent
if ($category->parent==0)
{
echo $category->count . \' \';
echo \'<a href="\' . get_category_link( $category->term_id ) . \'">\'. $category->name . \'</a> , \';
}
}
?>