I have this code.
<?php
$categories = get_categories( array(
'taxonomy' => 'events_cat',
'orderby' => 'name',
'order' => 'ASC'
));
foreach ($categories as $category) ?>
<div>
<?php name(); ?>
</div>
<?php endforeach; ?>
I try show list categories (foreach), but this no work. any idea why it does not work?