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;
?>

Comments

Popular posts from this blog

dynamic create multiple ckeditor onclick event using jquery

get lat and long from city name using jquery

membership registration and login system in php