Constructor.
Parameters
$termWP_Term|objectrequired- Term object.
Source
public function __construct( $term ) {
foreach ( get_object_vars( $term ) as $key => $value ) {
$this->$key = $value;
}
}
Changelog
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |
Constructor.
$termWP_Term|objectrequiredpublic function __construct( $term ) {
foreach ( get_object_vars( $term ) as $key => $value ) {
$this->$key = $value;
}
}
| Version | Description |
|---|---|
| 4.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.