LLMS_Turnstile::add_turnstile_script()
Enqueue the Cloudflare Turnstile script.
Contents
Return Return
(void)
Source Source
File: includes/spam/class-llms-turnstile.php
public function add_turnstile_script() {
if ( ! $this->is_enabled() ) {
return;
}
if ( is_admin() ) {
return;
}
wp_enqueue_script( 'cloudflare-turnstile', 'https://challenges.cloudflare.com/turnstile/v0/api.js' );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 9.0.0 | Introduced. |