Attempting to get number of grandchildren of page in WP_Query loop
I have a custom archive page(with map and location data) for a custom post type. Due to how the locations are hierarchal(state, city, location), I want to show the states only on the archive page, and a count of the grand-children on the marker(using google maps API). The marker with text is working great, as is grabbing only the top level locations. The issue I'm having is getting an accurate count.
This is my current code. I've tried get_posts
, get_pages
, as well as WP_query
. It's returning the postID
in the actual sub-queries as '0' and is returning all pages as the count. Am I missing something super obvious?
$query = new WP_Query(array(
'post_type' = 'location',
'posts_per_page' = -1,
'post_parent' = 0,
'orderby' = 'title',
'order' = 'ASC',
));
$locations = '';
while ($query-have_posts()) {
$query-the_post();
$post_id = $post-ID;
$title = get_the_title($post_id);
$permalink = get_the_permalink($post_id);
$locationdata = get_field('location',$post_id);
$latitude = $locationdata['lat'];
$longitude = $locationdata['lng'];
$address = $locationdata['address'];
$hours = get_field('hours',$post_id);
$counter = new WP_Query(array( 'post_parent' = $query-$post-ID, 'post_type' = 'location', 'posts_per_page' = -1 ) );
$countchildren = $counter-post_count;
$mapslocations = $mapslocations.'[new google.maps.LatLng('.$latitude.', '.$longitude.'), \''.$title.'\', \'address'.$address.'/address\',"'. $permalink .'","'.$countchildren.'"],';
$locations = $locations.'lih2a href="'.get_the_permalink().'"'.get_the_title().'/a/li';
}
wp_reset_postdata();
Topic get-children hierarchical custom-post-types Wordpress
Category Web