is_post_type_hierarchical()

You are here:
  • Help
  • is_post_type_hierarchical()

is_post_type_hierarchical( string $post_type )

Whether the post type is hierarchical.

Description Description

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

See also See also

  • get_post_type_object()

Top ↑

Parameters Parameters

$post_type

(string) (Required) Post type name


Top ↑

Return Return

(bool) Whether post type is hierarchical.


Top ↑

Source Source

File: wp-includes/post.php

1183
1184
1185
1186
1187
1188
1189
1190
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;
}


Top ↑

Changelog Changelog

Changelog
Version Description
3.0.0 Introduced.
Was this article helpful?
Dislike 0
Views: 5