How to get into flying and...

Have you ever dreamt of learning to fly? Not those big planes that you go on holiday in but little planes, where you can take your friends up for an experience of a lifetime. We’ve got to say the Isle of Wight is always a flier’s top place to go for lunch!

Here at Air Experiences, we want as many people to experience the awesome sensation of flying!

function display_related_posts() { if (is_single()) { global $post; $categories = wp_get_post_categories($post->ID); if ($categories) { $args = array( 'category__in' => $categories, 'post__not_in' => array($post->ID), 'posts_per_page' => 4, 'orderby' => 'rand' ); $related_posts = new WP_Query($args); if ($related_posts->have_posts()) { echo ''; } wp_reset_postdata(); } } } add_action('wp_footer', 'display_related_posts');