I recently installed the PressPlay theme and I replaced the title and description in the header with my custom image (via PressPlay Options).
However, the image doesn't link to home page. I tried to fix that, but I couldn't, because the image is added as a div background - impossible to make it a link...
So I wanted to add a "Home" link in the top menu above header. I added 'echo get_option('home');' in the page-list. Like this:
'<ul id="page-list">
<?php if($pp_above_header == "above_header_pages"){
echo get_option('home');
wp_list_pages('title_li=');
} elseif($pp_above_header == "above_header_categories"){
wp_list_categories('title_li=');
} else { } ?>
<!-- #page-list -->'
It returns a black url at the end of menu. See it here:
http://klikerlab.pl/
But the url is not a hyperlink and it's not what I want, of course...
What should I do?
Thanks for any advice!