get post count by category name in custom post type in wordpress
<?php
$args = array(
'post_type' => 'listing',
'tax_query' => array(
array(
'taxonomy' => 'education_type',
'field' => 'slug',
'terms' => $cat->name,
),
),
);
$query = new WP_Query( $args );
echo $count = $query->post_count;
?>
$args = array(
'post_type' => 'listing',
'tax_query' => array(
array(
'taxonomy' => 'education_type',
'field' => 'slug',
'terms' => $cat->name,
),
),
);
$query = new WP_Query( $args );
echo $count = $query->post_count;
?>
Comments
Post a Comment