i using wordpress vesion 4.3, when used Yoast SEO only page post-sitemap.xml error. how i can fix it? thanks for wathcing.
2
XML has a special set of characters that cannot be used in normal XML strings. Here ‘&’ is a special character.
These characters are:
& - & < - < > - > " - " ' - '
For example, the following XML string is invalid:
<Organization>IBM & Microsoft</Organization>
Whereas the following is valid XML:
<Organization>IBM & Microsoft</Organization>
—Note that we have replaced '&' with '&' in the second XML string which makes it valid.
'&'
'&'
Your plugin doesn’t escape Vietnamese symbols. So try to rename image file that causes this error.
Click here to cancel reply.
2
Answers
XML has a special set of characters that cannot be used in normal XML strings.
Here ‘&’ is a special character.
These characters are:
For example, the following XML string is invalid:
Whereas the following is valid XML:
—Note that we have replaced
'&'
with'&'
in the second XML string which makes it valid.Your plugin doesn’t escape Vietnamese symbols. So try to rename image file that causes this error.