I am looking how to change a logo based on either class in the <body> or post type/page template.
I am not too knowledgeable with PHP if statements which I am guessing I will need to make this work.
I think what would work great is if I had all the logos in a sprite graphic and using a css class to change to the different logos for each page so the php would just change the class.
Something along like this?
if(body class="home") {
<div class="logo1"><img src="images/logo.png" /></div>
} elseif(body class="page1") {
<div class="logo2"><img src="images/logo.png" /></div>
} else {
<div class="logo"><img src="images/logo.png" /></div>
}
I have not tried this code yet just want to know if this correct way.