LLMS_Turnstile::render()

Add the Turnstile widget to the checkout and registration forms.


Return Return

(void)


Top ↑

Source Source

File: includes/spam/class-llms-turnstile.php

	public function render() {
		if ( ! $this->is_enabled() ) {
			return;
		}

		if ( is_admin() ) {
			return;
		}

		?>
		<div class="cf-turnstile" data-sitekey="<?php echo esc_attr( $this->site_key ); ?>"></div>
		<?php
	}

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.