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)

Хуков нет.

Возвращает

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

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

acf_field_type_exists( $type );
$type
.
По умолчанию: ''

Код acf_field_type_exists() ACF 6.4.2

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