acf_is_filter_enabled()ACF 5.4.0

acf_is_filter_enabled

Returns the state of a filter for the given name.

Хуков нет.

Возвращает

Массив.

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

acf_is_filter_enabled( $name );
$name **
-
По умолчанию: ''

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

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

Код acf_is_filter_enabled() ACF 6.0.4

function acf_is_filter_enabled( $name = '' ) {
	return acf_get_store( 'filters' )->get( $name );
}