rezervoari
<ul class="library-cat">
<?php
$args = array(
'orderby' => 'slug',
'parent' => 0
);
$categories = get_categories( $args );
foreach( $categories as $category ){
?>
<li class="library-cat__item">
<a href="<?php echo get_category_link( $category->term_id ) ?>" rel="bookmark">
<h3><?php echo $category->name ?></h3><p><?php echo $category->category_count ?> Templates</p>
</a>
</li>
<?php
}
?>
</ul>