////@HA - 06/26/26 - CookieBot - Start add_action('template_redirect', function () { if (!function_exists('geoip_detect2_get_info_from_current_ip')) { return; } $record = geoip_detect2_get_info_from_current_ip(); if ( $record && isset($record->country->isoCode) && $record->country->isoCode === 'US' && isset($record->mostSpecificSubdivision->isoCode) && $record->mostSpecificSubdivision->isoCode === 'CA' ) { wp_die( 'Access to this website is currently unavailable. We apologize for the inconvenience.', 'Access Restricted', array('response' => 403) ); } }); ////@HA - 06/26/26 - CookieBot - END