slug : 'wonder';
$territory_name = ( $territory_terms && ! is_wp_error( $territory_terms ) ) ? $territory_terms[0]->name : '';
$explore_price = get_post_meta( get_the_ID(), '_ophiro_explore_price', true );
$comfort_price = get_post_meta( get_the_ID(), '_ophiro_comfort_price', true );
$signature_price = get_post_meta( get_the_ID(), '_ophiro_signature_price', true );
$explore_desc = get_post_meta( get_the_ID(), '_ophiro_explore_desc', true );
$comfort_desc = get_post_meta( get_the_ID(), '_ophiro_comfort_desc', true );
$signature_desc = get_post_meta( get_the_ID(), '_ophiro_signature_desc', true );
$inclusions_raw = get_post_meta( get_the_ID(), '_ophiro_inclusions', true );
$exclusions_raw = get_post_meta( get_the_ID(), '_ophiro_exclusions', true );
$itinerary = get_post_meta( get_the_ID(), '_ophiro_itinerary', true );
$duration = get_post_meta( get_the_ID(), '_ophiro_duration', true );
$max_group = get_post_meta( get_the_ID(), '_ophiro_max_group', true );
$start_location = get_post_meta( get_the_ID(), '_ophiro_start_location', true );
$end_location = get_post_meta( get_the_ID(), '_ophiro_end_location', true );
$inclusions = ! empty( $inclusions_raw ) ? array_filter( array_map( 'trim', explode( "\n", $inclusions_raw ) ) ) : array();
$exclusions = ! empty( $exclusions_raw ) ? array_filter( array_map( 'trim', explode( "\n", $exclusions_raw ) ) ) : array();
?>