item = $item; } function __isset( $key ) { return isset( $this->item->$key ); } function __get( $key ) { return $this->item->$key; } function __set( $key, $value ) { $this->item->$key = $value; } function get_object() { return $this->item; } function get_id() { return $this->item->ID; } abstract function get_permalink(); abstract function get_title(); }