tags:

views:

19

answers:

1

Can I display html tags like links and span tags inside the description in RSS feed code using PHP

A: 

RSS feed is not a html document. My answer is that you should not use html elements inside RSS feeds. At least there is no guarantee that every implementations would show them like you expect if any.

Joni
so strip out the tags using strip_tags()
meta