collectExpandableDatas('https://www.freecodecamp.org/news/rss/', 15); } protected function parseItem($item) { $item = parent::parseItem($item); $dom = getSimpleHTMLDOM($item['uri']); // figure contain's the main article image $article = $dom->find('figure', 0); // the actual article foreach ($dom->find('.post-full-content') as $element) { $article = $article . $element; } $item['content'] = $article; return $item; } }