/** * FAQPage Schema - Auto-generates JSON-LD from page FAQ content * Supports Elementor accordions AND heading+text FAQ layouts * Filters out CTA headings and skips if fewer than 2 FAQs found */ add_action( 'wp_footer', 'wus_faqpage_schema', 99 ); function wus_faqpage_schema() { if ( ! is_singular() ) return; $post_id = get_the_ID(); $faq_items = array(); // Method 1: Check Elementor accordion/toggle widgets $elementor_data = get_post_meta( $post_id, '_elementor_data', true ); if ( ! empty( $elementor_data ) ) { $elements = json_decode( $elementor_data, true ); if ( is_array( $elements ) ) { wus_find_accordion_faqs( $elements, $faq_items ); } } // Method 2: Regex-based heading parsing (fallback) if ( empty( $faq_items ) ) { $content = apply_filters( 'the_content', get_post_field( 'post_content', $post_id ) ); if ( ! empty( $content ) ) { preg_match_all( '/]*>([^<]*\\?[^<]*)<\\/h[2-5]>/i', $content, $q_matches, PREG_SET_ORDER | PREG_OFFSET_CAPTURE ); foreach ( $q_matches as $match ) { $question = wp_strip_all_tags( $match[1][0] ); if ( strlen( $question ) < 10 ) continue; // Filter out CTA headings $skip_phrases = array( 'still have', 'contact us', 'get in touch', 'reach out', 'call us', 'ready to', 'get started', 'book now', 'schedule', 'free quote', 'book your', 'hire' ); $skip = false; foreach ( $skip_phrases as $phrase ) { if ( stripos( $question, $phrase ) !== false ) { $skip = true; break; } } if ( $skip ) continue; $after_pos = $match[0][1] + strlen( $match[0][0] ); $remaining = substr( $content, $after_pos, 2000 ); if ( preg_match( '/ 20 ) { $faq_items[] = array( 'question' => $question, 'answer' => $answer ); } } } } if ( count( $faq_items ) < 2 ) return; $schema = array( '@context' => 'https://schema.org', '@type' => 'FAQPage', 'mainEntity' => array(), ); foreach ( $faq_items as $item ) { $schema['mainEntity'][] = array( '@type' => 'Question', 'name' => html_entity_decode( $item['question'], ENT_QUOTES, 'UTF-8' ), 'acceptedAnswer' => array( '@type' => 'Answer', 'text' => html_entity_decode( $item['answer'], ENT_QUOTES, 'UTF-8' ), ), ); } echo '' . "\n"; } function wus_find_accordion_faqs( $elements, &$faq_items ) { foreach ( $elements as $element ) { if ( isset( $element['widgetType'] ) && in_array( $element['widgetType'], array( 'accordion', 'toggle' ) ) ) { if ( ! empty( $element['settings']['tabs'] ) ) { foreach ( $element['settings']['tabs'] as $tab ) { $q = isset( $tab['tab_title'] ) ? wp_strip_all_tags( $tab['tab_title'] ) : ''; $a = isset( $tab['tab_content'] ) ? wp_strip_all_tags( $tab['tab_content'] ) : ''; if ( strlen( $q ) > 5 && strlen( $a ) > 10 ) { $faq_items[] = array( 'question' => $q, 'answer' => $a ); } } } } if ( ! empty( $element['elements'] ) ) { wus_find_accordion_faqs( $element['elements'], $faq_items ); } } }/** * MusicGroup + LocalBusiness Schema for Wakeup Starlight * Outputs JSON-LD on homepage only */ add_action( 'wp_footer', 'wus_musicgroup_localbusiness_schema', 99 ); function wus_musicgroup_localbusiness_schema() { if ( ! is_front_page() ) return; $schema = array( '@context' => 'https://schema.org', '@graph' => array( array( '@type' => 'MusicGroup', '@id' => 'https://wakeupstarlight.com/#musicgroup', 'name' => 'Wakeup Starlight', 'url' => 'https://wakeupstarlight.com/', 'description' => 'Calgary\'s premier live band for hire. High-energy cover band performances for corporate events, weddings, Stampede parties, festivals, and private celebrations across Alberta and Western Canada.', 'genre' => array( 'Cover Band', 'Rock', 'Pop', 'Country', 'Dance', 'Top 40' ), 'image' => 'https://wakeupstarlight.com/wp-content/uploads/wakeup-starlight-og.jpg', 'sameAs' => array( 'https://www.facebook.com/wakeupstarlight', 'https://www.instagram.com/wakeupstarlight' ), 'areaServed' => array( array( '@type' => 'City', 'name' => 'Calgary', 'addressRegion' => 'AB', 'addressCountry' => 'CA' ), array( '@type' => 'City', 'name' => 'Banff', 'addressRegion' => 'AB', 'addressCountry' => 'CA' ), array( '@type' => 'City', 'name' => 'Edmonton', 'addressRegion' => 'AB', 'addressCountry' => 'CA' ), array( '@type' => 'City', 'name' => 'Vancouver', 'addressRegion' => 'BC', 'addressCountry' => 'CA' ), array( '@type' => 'City', 'name' => 'Kelowna', 'addressRegion' => 'BC', 'addressCountry' => 'CA' ), array( '@type' => 'City', 'name' => 'Saskatoon', 'addressRegion' => 'SK', 'addressCountry' => 'CA' ), array( '@type' => 'City', 'name' => 'Winnipeg', 'addressRegion' => 'MB', 'addressCountry' => 'CA' ) ), 'makesOffer' => array( array( '@type' => 'Offer', 'itemOffered' => array( '@type' => 'Service', 'name' => 'Live Band Performance', 'description' => 'Professional live band entertainment for corporate events, weddings, Stampede parties, festivals, and private celebrations.' ), 'availableChannel' => array( '@type' => 'ServiceChannel', 'serviceUrl' => 'https://wakeupstarlight.com/bookings/' ) ) ) ), array( '@type' => 'LocalBusiness', '@id' => 'https://wakeupstarlight.com/#localbusiness', 'name' => 'Wakeup Starlight', 'url' => 'https://wakeupstarlight.com/', 'description' => 'Professional live band for hire in Calgary and across Western Canada.', 'image' => 'https://wakeupstarlight.com/wp-content/uploads/wakeup-starlight-og.jpg', 'address' => array( '@type' => 'PostalAddress', 'addressLocality' => 'Calgary', 'addressRegion' => 'AB', 'addressCountry' => 'CA' ), 'priceRange' => '$$' ) ) ); echo '' . "\n"; }

Revelstoke Live Entertainment — Live Band for Hire in BC's Mountain Playground

Award-winning live music for Revelstoke corporate events, ski parties, festivals, and mountain celebrations

Live Entertainment Built for Revelstoke's Mountain Spirit

Revelstoke has transformed from a quiet railway town into one of British Columbia’s most exciting mountain destinations. With Revelstoke Mountain Resort drawing powder chasers from around the world, a growing arts and culture scene, and a downtown core that buzzes with energy year-round, this Columbia Valley gem is quickly becoming a top-tier event destination. Wake Up Starlight brings award-winning live entertainment to Revelstoke — the same GMA Award-winning, Billboard-recognized band trusted by Fairmont properties across the Canadian Rockies.

Whether you’re planning a corporate retreat at the Sutton Place Hotel, an après-ski blowout at a downtown venue, or a summer festival at Grizzly Plaza, Wake Up Starlight delivers high-energy live music with fifteen years of professional performance experience backing every note.

Corporate Retreats & Team Events

Revelstoke’s combination of world-class outdoor recreation and intimate mountain-town charm makes it an increasingly popular choice for corporate retreats and team-building events. Companies bring their teams to Revelstoke for skiing, heli-skiing, mountain biking, and river rafting — and after a day of adventure, there’s no better way to cap things off than with live entertainment that brings the whole team together. Wake Up Starlight has performed for corporate clients including Monsanto, Engineered Air, and Visions Electronics, delivering polished entertainment that strikes the perfect balance between high energy and professional atmosphere. The Sutton Place Hotel, Hillcrest Hotel, and Revelstoke Community Centre all offer excellent event spaces for corporate functions with live band entertainment.

Ski Season & Après Events

Revelstoke Mountain Resort boasts North America’s greatest vertical drop, and the skiing community that descends on the town each winter brings an infectious energy that’s perfectly matched by live music. Après-ski parties at the Village Lodge, celebrations at downtown pubs like the Craft Bierhaus, and private chalet gatherings throughout the valley all benefit from Wake Up Starlight’s versatile, high-energy performances. Our setlist covers everything from rock anthems and pop hits to country favourites — whatever it takes to keep a room full of powder-happy skiers and snowboarders on the dance floor. We also offer our acoustic duo format for more intimate winter lodge gatherings where the atmosphere calls for something warm and relaxed.

Summer Festivals & Outdoor Events

Revelstoke’s summer is packed with events that showcase the town’s vibrant community spirit. The Revelstoke Summer Street Fest transforms Grizzly Plaza into an outdoor celebration, while events like the Revelstoke Timber Days, Canada Day festivities, and the Saturday Mountain Market draw locals and visitors alike. The Revelstoke Railway Museum hosts special events, and the surrounding Glacier and Mount Revelstoke National Parks provide stunning settings for outdoor celebrations. Wake Up Starlight’s festival experience across Western Canada means we arrive with professional-grade sound equipment and the stage presence to command outdoor performances, from intimate plaza concerts to high-energy main stage shows.

Private Celebrations & Mountain Gatherings

Revelstoke’s stunning natural setting makes every celebration more memorable. Birthday milestones at mountain lodges, anniversary dinners at the Regent Hotel, family reunions at rented chalets in the Williamson Lake or Arrow Heights neighbourhoods — these special moments deserve live entertainment that rises to the occasion. Wake Up Starlight adapts to any Revelstoke venue, from the grand ballroom of the Sutton Place Hotel to an intimate cabin gathering along the Illecillewaet River. Our flexible performance formats mean you get exactly the right energy level for your celebration, whether that’s a full band dance party or an acoustic set by the fireplace.

Serving Revelstoke & the Columbia Valley

Our Revelstoke service area extends throughout the Columbia Valley, including Golden, Nakusp, and the surrounding mountain communities along the Trans-Canada Highway. We also serve events at nearby ski areas and resorts, including Kicking Horse Mountain Resort in Golden. Whether your event is in downtown Revelstoke or at a remote mountain lodge, Wake Up Starlight brings the full professional entertainment experience.

Travel & Logistics

Based in Calgary, Wake Up Starlight regularly travels to Revelstoke via the Trans-Canada Highway for events throughout the year. All travel logistics and professional sound and lighting equipment through our partnership with Fermi Audio Visual are built into our Revelstoke entertainment packages — no hidden fees. For multi-day ski season bookings, festival engagements, or corporate retreats, we offer extended-engagement rates that deliver outstanding value for premium live entertainment. Contact us today for a custom quote for your Revelstoke event.

Revelstoke's Live Entertainment Choice

From corporate retreats to après-ski celebrations to summer festivals at Grizzly Plaza, Wake Up Starlight brings award-winning live music to Revelstoke and the Columbia Valley.