I have a blog in Wordpress, using Cleaker 2.1 theme, all are running fine. I just wanted to make the header clickable. Is there any way for me to do this easily ? I don't quite understand PHP, but if you can teach me how to hack it then its fine. Or maybe I can use any plugins ? Thanks The blog is : http://www.freelocale.com (for clarification purposes only)
He just recently released the Cleaker 3.0 theme. Maybe the functionality you want is built into the new version.
Check the header.php file Find for a code like this: <?php bloginfo('name'); ?> Replace the above code with this: <a href="<?php echo get_settings('home'); ?>/" title=""><?php bloginfo('name'); ?></a>
Are you sure? Try this in the header: <h1 class="title"><a href="<?php bloginfo('url'); ?>"><?php bloginfo('name'); ?></a></h1> Code (markup): Right now it seems there's no link there at all. This will make the link clickable in the header.