id = $comment->uri; $this->content = $comment->message_html; $this->published = $comment->created_at->format(DATE_W3C); $this->attributedTo = $comment->actor->uri; if ($comment->in_reply_to_id !== null) { $this->inReplyTo = $comment->reply_to_comment->uri; } $this->replies = url_to( 'episode-comment-replies', esc($comment->actor->username), $comment->episode->slug, $comment->id ); $this->cc = [$comment->actor->followers_url]; } }