acf_field_type_exists()ACF 5.0.0

acf_field_type_exists (deprecated)

deprecated in favour of acf_is_field_type()

No Hooks.

Returns

(true|false).

Usage

acf_field_type_exists( $type );
$type
.
Default: ''

Changelog

Since 5.0.0 Introduced.

acf_field_type_exists() code ACF 6.0.4

function acf_field_type_exists( $type = '' ) {
	return acf_is_field_type( $type );
}