astra_addon_has_3_5_0_version()

Check the Astra addon 3.5.0 version is using or not.


Description

As this is major update and frequently we used version_compare, added a function for this for easy maintenance.


Source

File: inc/extras.php

function astra_addon_has_3_5_0_version() {
	return defined( 'ASTRA_EXT_VER' ) && version_compare( ASTRA_EXT_VER, '3.5.0', '<' );
}

Changelog

Changelog
Version Description
3.5.0 Introduced.

User Contributed Notes

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