I need to show a wordpress feed on another website and i am using an xslt to transform the xml into html.
It all works except the content.
I have set the namespace in the xsl declaration:
xmlns:content="
http://purl.org/rss/1.0/modules/content/"
and to get the value I have:
<xsl:value-of select="content:encoded" disable-output-escaping="yes"/>
but it does not work.
If i change it to:
<xsl:value-of select="description" disable-output-escaping="yes"/>
it can get the summary text no problem at all.
I have read everythihg i can and they all say to have the namepsace set but i already have that so why on earth is it not getting the value?
I hope someone can point out my mistake
