collectExpandableDatas('https://feeds.feedburner.com/variety/headlines', 15); } protected function parseItem($newsItem){ $item = parent::parseItem($newsItem); // $articlePage gets the entire page's contents $articlePage = getSimpleHTMLDOM($newsItem->link); // Remove Script tags foreach($articlePage->find('script') as $script_tag) { $script_tag->remove(); } $article = $articlePage->find('div.c-featured-media', 0); $article = $article . $articlePage->find('.c-content', 0); $item['content'] = $article; return $item; } }