collectExpandableDatas('https://listverse.com/feed/', 15); } protected function parseItem($newsItem){ $item = parent::parseItem($newsItem); // $articlePage gets the entire page's contents $articlePage = getSimpleHTMLDOM($newsItem->link); $article = $articlePage->find('#articlecontentonly', 0); $item['content'] = $article; return $item; } }