WP_Term::__get( string $key ): mixed

In this article

Getter.

Parameters

$keystringrequired
Property to get.

Return

mixed Property value.

Source

public function __get( $key ) {
	switch ( $key ) {
		case 'data':
			$data    = new stdClass();
			$columns = array( 'term_id', 'name', 'slug', 'term_group', 'term_taxonomy_id', 'taxonomy', 'description', 'parent', 'count' );
			foreach ( $columns as $column ) {
				$data->{$column} = isset( $this->{$column} ) ? $this->{$column} : null;
			}

			return sanitize_term( $data, $data->taxonomy, 'raw' );
	}
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

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