acf_validate_internal_post_type_values()ACF 6.1

Calls the ajax validator for a post type

Хуков нет.

Возвращает

Разное.

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

acf_validate_internal_post_type_values( $post_type );
$post_type(строка) (обязательный)
The post type being validated.

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

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

Код acf_validate_internal_post_type_values() ACF 6.4.2

function acf_validate_internal_post_type_values( $post_type ) {
	if ( $post_type ) {
		$instance = acf_get_internal_post_type_instance( $post_type );
		return $instance->ajax_validate_values();
	}
	return false;
}