wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



is_post_type_hierarchical › WordPress Function

Od3.0.0
Przestarzałyn/a
is_post_type_hierarchical ( $post_type )
Parametry:
  • (string) $post_type Post type name
    Wymagane: Tak
Zobacz:
Powrót:
  • (bool) Whether post type is hierarchical.
Zdefiniowane na:
Codex:

Determines whether the post type is hierarchical.

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


Źródło

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;
}