Welcome to the East Tennessee Whitewater Club (ETWC) page! ETWC is a recreational whitewater paddling club based out of the Oak Ridge/Knoxville/East Tennessee area. ETWC welcomes all whitewater paddlers! We promote safe boating practices, support conservation, and provide paddling trips and training for our club members and guests.
<?php $url = 'https://www.decastongrene.com/Catoosa_SSL/RDCDataService.svc/CatoosaToday'; $response = wp_remote_get( $url, array( 'timeout' => 10 ) ); if ( is_wp_error( $response ) ) { echo 'Error retrieving status'; } else { $code = wp_remote_retrieve_response_code( $response ); $body = wp_remote_retrieve_body( $response ); // The API is expected to return plain text "Open" or "Closed" $status = trim( $body ); if ( $code == 200 && ( $status === 'Open' || $status === 'Closed' ) ) { echo 'Catoosa Today: ' . esc_html( $status ); } else { echo 'Unexpected response'; } } ?>
