acf_is_post_type()ACF 6.1

Returns true if the given params match an ACF post type.

Хуков нет.

Возвращает

true|false.

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

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

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

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

Код acf_is_post_type() ACF 6.4.2

function acf_is_post_type( $post_type ) {
	return acf_is_internal_post_type( $post_type, 'acf-post-type' );
}