acf_import_post_type()
Imports an ACF post type into the database.
Хуков нет.
Возвращает
array. The imported post type.
Использование
acf_import_post_type( $post_type );
- $post_type(массив) (обязательный)
- The ACF post type array.
Список изменений
| С версии 6.1 | Введена. |
Код acf_import_post_type() acf import post type ACF 6.8.8
function acf_import_post_type( array $post_type ) {
return acf_import_internal_post_type( $post_type, 'acf-post-type' );
}