WP_Term::__construct() WordPress Method
The WP_Term::__construct() method is used to create a new term object. A term object represents a single term in a taxonomy.
WP_Term::__construct( WP_Term|object $term ) #
Constructor.
Parameters
- $term
(WP_Term|object)(Required)Term object.
Source
File: wp-includes/class-wp-term.php
public function __construct( $term ) { foreach ( get_object_vars( $term ) as $key => $value ) { $this->$key = $value; } }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |