is_taxonomy_hierarchical

Definition:
function is_taxonomy_hierarchical($taxonomy) {}

Whether the taxonomy object is hierarchical.
Checks to make sure that the taxonomy is an object first. Then Gets the object, and finally returns the hierarchical value in the object.

Parameters

  • string $taxonomy: Name of taxonomy object

Return values

returns:Whether the taxonomy is hierarchical

Source code

function is_taxonomy_hierarchical($taxonomy) {

	if ( ! taxonomy_exists($taxonomy) )

		return false;



	$taxonomy = get_taxonomy($taxonomy);

	return $taxonomy->hierarchical;

}

2205

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 )

Facebook photo

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

Connecting to %s

%d bloggers like this: