Hello,
that would require some customization but you can use these functions:
$total = GeoDir_Location_Country::count_posts_by_name( $item->country );
$total = GeoDir_Location_Region::count_posts_by_name( $item->region, $item->country );
$total = GeoDir_Location_City::count_posts_by_name( $item['city'], $item['region'], $item['country'] );
An example, untested:
/**
* Count listing by city, region, country.
*
* CITY:
* PHP : echo do_shortcode( '[gd_snippet_listings_count type="city" city="Ahmedabad" region="Gujarat" country="India"]' );
* HTML: [gd_snippet_listings_count type="city" city="Ahmedabad" region="Gujarat" country="India"]
*
* REGION:
* PHP : echo do_shortcode( '[gd_snippet_listings_count type="region" region="Gujarat" country="India"]' );
* HTML: [gd_snippet_listings_count type="region" region="Gujarat" country="India"]
*
* COUNTRY:
* PHP : echo do_shortcode( '[gd_snippet_listings_count type="country" country="India"]' );
* HTML: [gd_snippet_listings_count type="country" country="India"]
*/
function gd_snippet_listings_count_sc( $atts, $content = '' ) {
$defaults = array(
'type' => 'city', // country, region, city
'country' => '',
'region' => '',
'city' => ''
);
$args = wp_parse_args( $atts, $defaults );
$content = 0;
switch( $args['type'] ) {
case 'country':
if ( ! empty( $args['country'] ) ) {
$content = GeoDir_Location_Country::count_posts_by_name( $args['country'] );
}
break;
case 'region':
if ( ! empty( $args['region'] ) ) {
$content = (int) GeoDir_Location_Region::count_posts_by_name( $args['region'], $args['country'] );
}
break;
default:
case 'city':
if ( ! empty( $args['city'] ) ) {
$content = GeoDir_Location_City::count_posts_by_name( $args['city'], $args['region'], $args['country'] );
}
break;
}
return $content;
}
add_shortcode( 'gd_snippet_listings_count', 'gd_snippet_listings_count_sc' );
For more help with this customization you can find support here: https://geodirectoryexperts.com/