_is_cartflows_pro_ver_less_than( int $version )

Returns pro version number.


Parameters

$version

(int) (Required) version number.


Source

File: classes/class-cartflows-functions.php

function _is_cartflows_pro_ver_less_than( $version ) {

	if ( defined( 'CARTFLOWS_PRO_VER' ) && version_compare( CARTFLOWS_PRO_VER, $version, '<' ) ) {
		return true;
	}

	return false;
}


Changelog

Changelog
Version Description
1.0.0 Introduced.