title = $post->title; $item->description = $post->content; $item->pub_date = date("r", $post->date); $item->url = $link . "/?view=single&date=" . date("Y-m-d", $post->date) . "&ref=" . $post->id; foreach ($post->tags as $tag) { $item->categories[] = $tag; } return $item; } }