$taxonomy_name = 'category';
$args = array(
'taxonomy' => $taxonomy_name,
'orderby' => 'id',
'order' => 'ASC',
'hide_empty' => false,
);
$term_query = new WP_Term_Query( $args );
foreach( $term_query->terms as $term ){
?>
<a href="<?php echo $term->slug; ?>">
<span><?php echo $term->name?></span>
</a>
<br>
<?php
}
'exclude' => 1