collectExpandableDatas(static::URI . 'rss.xml', $max); } protected function parseItem($newsItem) { $item = parent::parseItem($newsItem); $url = (string) $newsItem->link; if (!$url) { return $item; } // todo: remove querystring tracking $articlePage = getSimpleHTMLDOM($url); // 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; } }