acf_import_post_type()ACF 6.1

Imports an ACF post type into the database.

Хуков нет.

Возвращает

Массив. The imported post type.

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

acf_import_post_type( $post_type );
$post_type(массив) (обязательный)
The ACF post type array.

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

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

Код acf_import_post_type() ACF 6.4.2

function acf_import_post_type( array $post_type ) {
	return acf_import_internal_post_type( $post_type, 'acf-post-type' );
}