astra_check_elementor_pro_3_5_version()
Check is Elementor Pro version is greater than or equal to beta 3.5 version.
Description
Return
(bool)
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;
}
Expand full source code Collapse full source code View on Trac
Changelog
| Version | Description |
|---|---|
| 3.7.5 | Introduced. |