mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-03 16:19:45 +00:00
[NordbayernBridge] fill item categories if available (#4338)
This commit is contained in:
parent
086ef7f8a7
commit
e3260ff529
@ -163,6 +163,13 @@ class NordbayernBridge extends BridgeAbstract
|
||||
$item['content'] .= $this->getUseFullContent($content);
|
||||
}
|
||||
|
||||
$categories = $article->find('[class=themen]', 0);
|
||||
if ($categories) {
|
||||
$item['categories'] = [];
|
||||
foreach ($categories->find('a') as $category) {
|
||||
$item['categories'][] = $category->innertext;
|
||||
}
|
||||
}
|
||||
|
||||
$article->clear();
|
||||
return $item;
|
||||
|
Loading…
Reference in New Issue
Block a user