is_post_type_hierarchical

Definition:
function is_post_type_hierarchical( $post_type ) {}

Whether the post type is hierarchical.
A false return value might also mean that the post type does not exist.

Parameters

  • string $post_type: Post type name

Return values

returns:Whether post type is hierarchical.

Source code

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;

}

2165

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: