Cities
$parent = get_the_ID();
$pages = get_pages(array('child_of'=>$parent));
$cities = wp_list_pluck( $pages, 'ID' );
echo do_shortcode('[ess_grid alias="travel_destination_cities" posts='.implode(',', $cities).']'); ?>
[wpgmza id=”14″]
87 Day Cost Breakdown
Housing
$1108
Food
$1382
Transportation
$658
Total
$3148
Note: The figures above represent the costs for two people
Posts
$title = get_the_title();
$country_posts = get_posts(array(
'numberposts' => -1, // get all posts.
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => $title,
),
),
'fields' => 'ids', // Only get post IDs
));
echo do_shortcode('[ess_grid alias="travel_destination_posts" posts='.implode(',',$country_posts).']');
?>