Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End [Solved] WordPress: <!–more–> html validation errors Re: [Solved] WordPress: html validation errors

#92405
mik3ca
Member

its normal. <p></a><p> is an error to HTML validation because of the </a>. you’re basically asking any HTML processor to process an ending part of a hyperlink to an unknown location inside a paragraph of nothing.
There are two easy ways to fix this. either remove </a> or change it to ‘<a href=”url”>label</a>’ but replace url with an actual url to a webpage and label will be the text that will appear as a hyperlink.