• Resolved joelworsham

    (@joelworsham)


    The feed to my website is drastically flawed. It seems as though something to produce the feed has been altered.

    I came on board to this website after it was created, so it’s probably something that I could not track back or have caused.

    https://www.casterconcepts.com/feed/

    Any thoughts?

Viewing 1 replies (of 1 total)
  • Thread Starter joelworsham

    (@joelworsham)

    For anybody that may stumble upon this post in searching, my issue was strange encoding issues that were largely existing around anchor tags.

    I’m sure there’s a better way to fix the issue that doesn’t involve sacrificing anchors, but it works. I also stripped out a few common special characters.

    $content = str_replace(array("”","“"),"\"",$content);
    $content = str_replace(" ","",$content);
    $content = strip_tags($content,"<p><div><img>");
Viewing 1 replies (of 1 total)
  • The topic ‘RSS Feed Very Messed Up’ is closed to new replies.