Quantcast
Channel: Add image from Files to description in RSS (using kirby3-feed)
Viewing all articles
Browse latest Browse all 13

Add image from Files to description in RSS (using kirby3-feed)

$
0
0

Yes, you can return a field object

public function rssDesc(): Field
{
    $image = Html::img($this->file()->url());
    $text = $this->text()->toBlocks();

    return new Field($this, 'rssDesc', $image . $text);
}

Read full topic


Viewing all articles
Browse latest Browse all 13

Trending Articles