acf_field_type_exists()ACF 1.0

  • @deprecated @see acf_is_field_type()
  • @type function @date 1/10/13 @since 5.0.0
  • @param $type (string) @return (boolean)

No Hooks.

Returns

null. Nothing (null).

Usage

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

acf_field_type_exists() code ACF 6.8.8

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