WP_Term::__construct( WP_Term|object $term )
Constructor.
Description Description
Parameters Parameters
- $term
-
(WP_Term|object) (Required) Term object.
Source 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 code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |