• Im having a bad time trying to validate this wordpress blog
    it seems to have a error with a permalink wordpress generated for a post and I have no idea where to edit this error to make a valid blog

    this is the error its giving me
    Error Line 43, Column 64: attributes construct error

    …emplafied.com/justblog/2011/02/lorem-ipsum/”title=”Lorem Ipsum”>Lorem Ipsum

    and the link to the whole validation https://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Ftemplafied.com%2Fjustblog%2F

    its a theme I created that i’m giving away on my website but I cant give it away until its 100 percent valid, kinda time sensitive so I appreciate any help givin

    thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • You’re probably just missing a space in your code near your title. You should have something like this:

    <h2><a href="<?php the_permalink() ?>" title="<?php the_title();?>"><?php the_title(); ?></a></h2>

    and not

    <h2><a href="<?php the_permalink() ?>"title="<?php the_title();?>"><?php the_title(); ?></a></h2>

    Thread Starter noeg

    (@noeg)

    oh my god I had no idea, thank you a million!!

    Happy to help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Validation Problem’ is closed to new replies.