acf_import_taxonomy()ACF 6.1

Imports an ACF taxonomy into the database.

Хуков нет.

Возвращает

Массив. The imported taxonomy.

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

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

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

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

Код acf_import_taxonomy() ACF 6.4.2

function acf_import_taxonomy( array $taxonomy ) {
	return acf_import_internal_post_type( $taxonomy, 'acf-taxonomy' );
}