I’m also trying to make my header clickable (link to my home), but header.php looks a bit different with the theme I’m using.
This is how it looks normally:
<div id="page">
<h1 id="header">
<a>/">
<?php bloginfo('name'); ?>
</a>
<div id="description">
<?php bloginfo('description'); ?>
</div>
</h1>
And this is what I changed it to:
<div id="page">
<a href="<?php echo get_option('home'); ?>/">
<h1 id="header">
<?php bloginfo('name'); ?></a>
<div id="description">
<?php bloginfo('description'); ?>
</div>
</h1>
Unfortunately it doesn’t work. I haven’t the slightest how to get it working. Could someone help me out? What should I change?
Thanks in advance!
Niek