Skip to content
Main Menu
  • Explore
    • Lodging
    • Restaurants
    • Attractions
    • Lake Conway
  • Events
  • Forms & Resources
  • About
Contact Us

Explore

  • Events
  • Lodging
  • Restaurants
  • Attractions

Resources

  • Events
  • Forms
  • About
  • Contact

Contact

  • Conway Advertising & Promotion Commission
  • 900 Oak Street Conway, AR 72032
  • CVB@ConwayArkansas.org
  • (501) 327-7788
Envelope Facebook Instagram

© 2025 Conway Advertising & Promotion Commission. All Rights Reserved.

add_action('template_redirect', 'remove_canonical_tag_by_slug'); function remove_canonical_tag_by_slug() { // Define the slugs of pages or posts where canonical tag should be removed $target_slugs = array('events'); // Get the current post safely (works with pages, posts, and custom post types) $post = get_queried_object(); // Make sure it's a singular post/page and the post object exists if (is_singular() && isset($post->post_name) && in_array($post->post_name, $target_slugs)) { ob_start(function($buffer) { // Remove any tag return preg_replace('/s*/i', '', $buffer); }); } }