This is the patch for php8:
edit this file:
/path_to_wordpress/wp-content/plugins/wp-rss-retriever/inc/lib/simplepie/library/SimplePie/Parse/Date.php:544
// This is for php version 8:
// the php implode function now use the <code>$separator</code> as first param and the <code>$array</code> to implode as second param
// see https://www.php.net/manual/en/function.implode.php#refsect1-function.implode-changelog
$phpVersion = substr(phpversion(), 0, 1);
if ($phpVersion === '8') {
$this->day_pcre = '(' . implode('|', array_keys($this->day)) . ')';
$this->month_pcre = '(' . implode('|', array_keys($this->month)) . ')';
} elseif (in_array($phpVersion, ['5', '7'])) {
$this->day_pcre = '(' . implode(array_keys($this->day), '|') . ')';
$this->month_pcre = '(' . implode(array_keys($this->month), '|') . ')';
}