Remove ‘More..’ link from RSS feed

I believe this can probably be done with a filter, but haven’t been able to find any info so far about it.

We are pulling the description node from our RSS feed into some external properties. The problem is that wordpress is adding a Read More link to the feed. We need it to disappear.

Read More

Here is what a description node currently looks like:

<description>
<![CDATA[
This is the article text......[.....]

 <a class="alignright" href="http://www.site.com/permalink">Read More …</a>
]]>
</description>

And what we want it to look like

<description>
<![CDATA[
This is the article text............]
]]>
</description>

Is this possible to achieve?

Related posts