is_post_type_hierarchical()

最后更新于:2021-11-27 10:15:19

is_post_type_hierarchical( string$post_type)

Whether the post type is hierarchical.

参数

$post_type

(string) (Required) Post type name

响应

(bool) Whether post type is hierarchical.

源文件

文件: gc-includes/post.php

function is_post_type_hierarchical( $post_type ) {
	if ( ! post_type_exists( $post_type ) ) {
		return false;
	}

	$post_type = get_post_type_object( $post_type );
	return $post_type->hierarchical;
}