Need help with a code for a different logo for each category
-
Each category on my site has its own color scheme and I want the logo to change with respects to it.
Right now i have something like this
<?php if (in_category( '955' )) $logo_image = 'dopefuselogotopgreen.png'; else $logo_image = 'dopefuselogotop.png';?> <a id="omc-logo" href="<?php echo home_url();?>"><img src="https://dopefuse.com/<?php echo $logo_image;?>" alt="<?php bloginfo('name');?> logo" <?php if ($omc_logo_image === NULL) { echo('height="96"'); }?> /></a>
But it doesnt work, anyone know what im doing wrong?
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Need help with a code for a different logo for each category’ is closed to new replies.