count custom taxonomy
-
What I am trying to do is count the amount of custom movie posts a certain custom taxonomy actor is in.
I can list all the actors fine, but just cant count the amount of movies the actors are in.
I know I am close but cant get it to work ??<?php foreach (get_terms('actor') as $cat) : ?> <div class="col-md-4"> <?php $cat = $cat ->name; $query = new WP_Query( array( 'movies' => '$cat', ) ); $count = $query->found_posts; ?> <?php echo $cat; ?>[<?php echo $count; ?>] </div> <?php endforeach; ?>
Viewing 14 replies - 1 through 14 (of 14 total)
Viewing 14 replies - 1 through 14 (of 14 total)
- The topic ‘count custom taxonomy’ is closed to new replies.