I have my template, and I want it to display a certain image if you are on certain page like http://example.com/test
and if you aren't on that page, then I want it to display another image.
I also want it to display the image if you are in any sub directory like http://example.com/test/stuff
Also, is there a way to do this with multiple pages in the same code?
So like
if page = example.com/test then display testimg.jpg
if page = example.com/archive then display archive.jpg
else, display defaultimg.jpg
thanks!