Buradan verelim kodlarıda

Eğer directory tarzında birşeyler yapmak isteyen arkadaşlar olursa list categories yerine get categories kullansınlar
Alıntı
<?php
$args=array(
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => '0'
);
$categories=get_categories($args);
foreach($categories as $category) {
echo '<div class="kat">';
echo '<div class="katresim"> <img alt="" src="http://wpforum.anarschi.com/wp-content/themes/pophov2/resim/wpforum.png" /></div> ';
echo '<div class="katbaslik"><h1><a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a></h1> <h2>'. $category->description . '</h2></div> ';
echo '<div class="katmesaj">'. $category->count . '</div>';
echo '<div class="domestos"></div>';
echo '</div>';
}
?>