acf_is_pro()ACF 6.2

Check if current install is ACF PRO

No Hooks.

Returns

true|false. True if the current install is ACF PRO

Usage

acf_is_pro();

Changelog

Since 6.2 Introduced.

acf_is_pro() code ACF 6.8.8

function acf_is_pro() {
	return defined( 'ACF_PRO' ) && ACF_PRO;
}