acf_is_beta()ACF 6.3

Check if ACF is a beta-like release.

No Hooks.

Returns

true|false. True if the current install version contains a dash, indicating a alpha, beta or RC release.

Usage

acf_is_beta();

Changelog

Since 6.3 Introduced.

acf_is_beta() code ACF 6.8.8

function acf_is_beta() {
	return defined( 'ACF_VERSION' ) && strpos( ACF_VERSION, '-' ) !== false;
}