how to add different logo to wordpress pages
-
I have a theme i am customizing on wordpress(Increate themes), the thing is the owner wants a page that talks something different and it will also have a different logo, my question is how can i insert a different logo to the page.
this is my theme header.php logo part
<div class="headdown <?php echo $sticky_header;?>"> <div class="row clearfix"> <div class="logo"> <a title="<?php bloginfo("description");?>" href="<?php echo home_url();?>"> <?php if ($ht_options['logo_url']) { ?> <img src="<?php echo $ht_options['logo_url'];?>" alt="<?php bloginfo('description'); ?>"/> <?php } else { ?> <img src="<?php echo get_template_directory_uri();?>/images/logo.png" alt="Logo"/> <?php }?> </a> </div>
- The topic ‘how to add different logo to wordpress pages’ is closed to new replies.