acf_field_clone::is_enabled()publicACF 5.4.0

is_enabled

This function will return true if acf_local functionality is enabled

Метод класса: acf_field_clone{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

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

Список изменений

С версии 5.4.0 Введена.

Код acf_field_clone::is_enabled() ACF 6.0.4

function is_enabled() {

	return acf_is_filter_enabled( 'clone' );

}