acf_field_clone::is_enabledpublicACF 5.4.0

This function will return true if acf_local functionality is enabled

Method of the class: acf_field_clone{}

No Hooks.

Returns

null. Nothing (null).

Usage

$acf_field_clone = new acf_field_clone();
$acf_field_clone->is_enabled();

Changelog

Since 5.4.0 Introduced.

acf_field_clone::is_enabled() code ACF 6.8.8

function is_enabled() {

	return acf_is_filter_enabled( 'clone' );
}