collectExpandableDatas(static::URI . 'rss.xml', 15); } protected function parseItem($newsItem){ $item = parent::parseItem($newsItem); // $articlePage gets the entire page's contents $articlePage = getSimpleHTMLDOM($newsItem->link); // figure contain's the main article image $article = $articlePage->find('figure', 0); // .article-text has the actual article foreach($articlePage->find('.article-text') as $element) $article = $article . $element; $item['content'] = $article; return $item; } }