I'm working on a wordpress customisation where I need an entire article tag to be a link.
Basically when I hover the <article>
the background color changes (working) but I cannot figure the html to make that entire tag into a link.
I've tried both ways
<a href="mylink">
<article>
/*article content: an image, header &text*/
</article>
</a>
and
<article>
<a href="mylink">
/*article content: an image, header &text*/
</a>
</article>