[php]<?php foreach (get_terms('actor') as $cat) : ?>
$count = $query->found_posts;
?>
<a href="?$cat->name;"><?php echo $cat->name; ?></a> <span style="color: white"><?php echo $count; ?></span>
</div>
<?php endforeach; ?>[/php]
Why is it the count process does not work?
Just trying to list all actors and the amount of movies they are associated with.
please help