acf_get_post_type()ACF 1.0

Get an ACF CPT as an array

Хуков нет.

Возвращает

Массив|false. The post type object.

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

acf_get_post_type( $id );
$id(int|строка) (обязательный)
The post ID being queried.

Код acf_get_post_type() ACF 6.4.2

function acf_get_post_type( $id ) {
	return acf_get_internal_post_type( $id, 'acf-post-type' );
}