Or if you have hyperlinks in <title></title> and
<description></description>, then you have to change HTML Entity Codes
(see https://www.mountaindragon.com/html/iso.htm ) and add to import-rss.php
for title links:
$title = str_replace(‘HTML_ENTITY’, ‘RESULT’, $title);
for content links:
$content = str_replace(‘HTML_ENTITY’, ‘RESULT’, $content);
where
HTML_ENTITY and RESULT can be found on the link above. I believe that
‘<‘ and ‘>’ symbols are to be changed.