How do I make my logo link back to home page in wordpress twenty twelve child theme?

I am currently developing a website with the WordPress Twenty Twelve theme and I have made a few changes of my own.

One of these changes is to the header and I have replaced the site title with an image, but now I want to make this image link back to the home page.

Read More

Below is the line of code of which makes the image appear on the site, I am hoping there is someway of adding a link in there to get the image to link to the homepage.

  <img class="sitelogo" src="<?php echo get_stylesheet_directory_uri(); ?>/logo.png" alt="site logo"/>

I have looked into different ways of doing this however the way I have done this, the image looks fine where it is.

Related posts

Leave a Reply

1 comment

  1. Errm, how about a link?

    <a href="<?php echo get_option("siteurl"); ?>"><img class="sitelogo" src="<?php echo get_stylesheet_directory_uri(); ?>/logo.png" alt="site logo"/></a>