LLMS_Forms::are_requirements_met()

Determines if the WP core requirements are met


Description Description

This is used to determine if the block editor can be used to manage forms and fields, all frontend and server-side handling works on all core supported WP versions.


Top ↑

Return Return

(boolean)


Top ↑

Source Source

File: includes/forms/class-llms-forms.php

	public function are_requirements_met() {
		global $wp_version;
		return version_compare( $wp_version, self::MIN_WP_VERSION, '>=' ) || is_plugin_active( 'gutenberg/gutenberg.php' );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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