How to use a different logo on differnt pages
Description
If you would like to use a different logo on home page versus other pages use this code.
If you would like to use a different logo on home page versus other pages use this code.
PHP Source Code
<?php if(is_home()) { ?>
<!-- your custom logo for home here -->
<a href="<?php echo get_site_url(); ?>">
<img class="others" src="<?php bloginfo("template_url") ?>/img/logo2.png" alt="logo">
<img class="otherOne" src="<?php bloginfo("template_url") ?>/img/logo2.png" alt="logo">
</a>
<?php } else { ?>
<!-- your theme logo function here -->
<a href="<?php echo get_site_url(); ?>">
<img class="others" src="<?php bloginfo("template_url") ?>/img/logo3.png" alt="logo">
<img class="otherOne" src="<?php bloginfo("template_url") ?>/img/logo3.png" alt="logo">
</a>
<?php } ?>