LLMS_Turnstile::add_turnstile_script()

Enqueue the Cloudflare Turnstile script.


Return Return

(void)


Top ↑

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' );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
9.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.