PHP
$categories=get_categories($args);
foreach($categories as $category) {
echo '<li><a href="' . get_category_link( $category->term_id ) . '" title="' . $category->description. '" ' . '>' . $category->name.'</a> </li> ';
}
Falls man HTML mit PHP ausgeben soll, wird das Quellcode total unübersichtlich.