Thanks, that fixed the problem.
The feed now validates, but it still shows up warnings and I’d like to get rid of those if at all possible.
Here’s the new error:
*
line 66, column 3: content:encoded should not contain object tag (2 occurrences) [help]
]]></content:encoded>
^
*
line 66, column 3: content:encoded should not contain embed tag (2 occurrences) [help]
]]></content:encoded>
^
And here’s the actual PHP code that is the culprit:
<?php if ( strlen( $post->post_content ) > 0 ) : ?><content:encoded><![CDATA[<?php the_content(”, 0, ”) ?>]]></content:encoded>
<?php else : ?><content:encoded><![CDATA[<?php the_excerpt_rss() ?>]]></content:encoded>
I matched up the brackets but they seem to be fine. Not sure why this is working.