alikrts adlı üyeden alıntı: mesajı görüntüle
<?php
$args = array(
  'orderby' => 'name',
  'hide_empty' => 0,
  );
$categories = get_categories( $args );
foreach ( $categories as $category ) {
	echo '<a href="' . get_category_link( $category->term_id ) . '">' . $category->name . '</a>';
}
?>

biraz uğraşıp, düzenleyerek yaptım hocam, teşekkürler