WP_Taxonomy::__construct( string $taxonomy, array|string $object_type, array|string $args = array() )

Constructor.


Description Description


Parameters Parameters

$taxonomy

(string) (Required) Taxonomy key, must not exceed 32 characters.

$object_type

(array|string) (Required) Name of the object type for the taxonomy object.

$args

(array|string) (Optional) Array or query string of arguments for registering a taxonomy.

Default value: array()


Top ↑

Source Source

File: wp-includes/class-wp-taxonomy.php

	public function __construct( $taxonomy, $object_type, $args = array() ) {
		$this->name = $taxonomy;

		$this->set_props( $object_type, $args );
	}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.