Introduce is_post_type_hierarchical(). Props ptahdunbar. See #12950

git-svn-id: https://develop.svn.wordpress.org/trunk@14053 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dion Hulse 2010-04-10 11:42:45 +00:00
parent 8aad6ef615
commit 4d5709b11d
1 changed files with 22 additions and 0 deletions

View File

@ -660,6 +660,28 @@ function get_post_stati( $args = array(), $output = 'names', $operator = 'or' )
return $post_statuses;
}
/**
* Whether the post type is hierarchical.
*
* A false return value might also mean that the post type does not exist.
*
* @since 3.0.0
* @see get_post_type_object
*
* @param string|int|object $post Post type name, post id, or a post object.
* @return bool true if post type is hierarchical, else false.
*/
function is_post_type_hierarchical( $post = false ) {
if ( is_string($post) && $is_post_type = get_post_type_object($post) )
return $is_post_type->hierarchical;
$ptype = get_post( $post );
if ( $ptype && $is_post_type = get_post_type_object($ptype->post_type) )
return $is_post_type->hierarchical;
return false;
}
/**
* Retrieve the post type of the current post or of a given post.
*