It looks like nothing was found at this location. Maybe try one of the links below or a search?
function tm_verify_recaptcha($token) { $secret = trim('YOUR_SECRET'); $response = wp_remote_post( 'https://www.google.com/recaptcha/api/siteverify', [ 'body' => [ 'secret' => $secret, 'response' => $token ] ] ); $result = json_decode(wp_remote_retrieve_body($response), true); echo '
';
print_r($result);
echo '';
exit;
}