astra_check_elementor_pro_3_5_version()

Check is Elementor Pro version is greater than or equal to beta 3.5 version.


Description


Return

(boolean)


Source

File: inc/extras.php

function astra_check_elementor_pro_3_5_version() {
	if ( defined( 'ELEMENTOR_PRO_VERSION' ) && version_compare( ELEMENTOR_PRO_VERSION, '3.5', '>=' ) ) {
		return true;
	}
	return false;
}

Changelog

Changelog
Version Description
3.7.5 Introduced.


User Contributed Notes

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