Thread Starter
hafman
(@hafman)
Behold, the solution…
<?php
$cat_args = array(
'orderby' => 'name',
'order' => 'ASC'
);
$categories = get_categories($cat_args);
foreach($categories as $category) {
if ( in_category( $category->term_id ) ) {
?>
<li class="cat-item current-cat cat-item-<?php echo $category->term_id; ?>"><a title="View all posts filed under <?php echo $category->name; ?>" href="<?php echo get_category_link( $category->term_id ); ?>"><?php echo $category->name; ?></a>
</li>
<?php
} else {
?>
<li class="cat-item cat-item-<?php echo $category->term_id; ?>"><a title="View all posts filed under <?php echo $category->name; ?>" href="<?php echo get_category_link( $category->term_id ); ?>"><?php echo $category->name; ?></a>
</li>
<?php
}
}
?>
Ronald Reagan face.