List of articles
[table “6” not found /]function tm_verify_recaptcha($token) { $secret = trim('6LdVlRQtAAAAAHjLaQWdYCau9ORtSbpoAZFju-mO '); $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;
}