How to make clickable header ?

Discussion in 'WordPress' started by 4hire, Aug 10, 2008.

  1. #1
    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)
     
    4hire, Aug 10, 2008 IP
  2. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #2
    He just recently released the Cleaker 3.0 theme. Maybe the functionality you want is built into the new version.
     
    mizaks, Aug 11, 2008 IP
  3. tlinu

    tlinu Peon

    Messages:
    11
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #3
    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>
     
    tlinu, Aug 12, 2008 IP
  4. 4hire

    4hire Peon

    Messages:
    55
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Have try your suggestion. No work.

    Any more ideas ? Thanks anyway.
     
    4hire, Aug 13, 2008 IP
  5. iloveRP.com

    iloveRP.com Peon

    Messages:
    457
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #5
    iloveRP.com, Aug 13, 2008 IP
  6. fish

    fish Well-Known Member

    Messages:
    450
    Likes Received:
    36
    Best Answers:
    0
    Trophy Points:
    120
    #6
    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.
     
    fish, Aug 13, 2008 IP