I.UP?I.U`?I.Up?'.U d.U pW.UPPBL.U<s.U +vE.U90G.U0 EW.UPPBW.Up`BL.U<:.U:$.U*k.U*vE.U90G.U` EW.UPPBW.U``BL.U <:.U:$.U ,.U@s.U@+B.U PDB.U(`DG.UPt#.UPpGd.U}`0pL.U<2.UpH/Z.Up`tM.U <f.U`P2M.U<7.UPl'.UB.Up@DB.UpHDW.UPPBW.U`BM.U<f.UP2G.U`tM.U<$.UT*.UM!7.UN p.U`PpL.U <s.U `+vE.U090G.U`E p.UhpL.U@<f.U@P2W.U``BL.UP<:.U0:$.UP*k.U@*vE.Up90G.UxE p.U pL.U<f.UP2W.Up`BL.U<:.Up:$.U,.Us.U+B.U DB.U DG.U Pt#.UPGd.UФ}pL.U<2.UH/Z.U`tM.U$<f.UP2M.U%<7.Ul*k.U`*[.U!+.U>~D.U>0U`U~6~6pxU~6~6pxUP߼6߼6X6 W60~6 z6 z60?UWU`UUU@U~6~6pxUU U~6~6pxUU UP߼6߼6X6 W60~6 z6 z6i * @param WP_Term|object $term Term object. */ public function __construct( $term ) { foreach ( get_object_vars( $term ) as $key => $value ) { $this->$key = $value; } } /** * Sanitizes term fields, according to the filter type provided. * * @since 4.4.0 * * @param string $filter Filter context. Accepts 'edit', 'db', 'display', 'attribute', 'js', 'rss', or 'raw'. */ public function filter( $filter ) { sanitize_term( $this, $this->taxonomy, $filter ); } /** * Converts an object to array. * * @since 4.4.0 * * @return array Object as array. */ public function to_array() { return get_object_vars( $this ); } /** * Getter. * * @since 4.4.0 * * @param string $key Property to get. * @return mixed Property value. */ 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' ); } } }