How to make a link on homepage only in WordPress?

Discussion in 'WordPress' started by poshswinger, May 9, 2008.

  1. #1
    rather than a sitewide link if I put it in footer, header or sidebar.php....
     
    poshswinger, May 9, 2008 IP
  2. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #2
    You'll need to do something similar to this. Put in your sidebar (or other location).

    <?php if (is_home()) {
            // show home page only link
            echo "your link here";
    }
    Code (markup):
     
    mizaks, May 9, 2008 IP
  3. poshswinger

    poshswinger Active Member

    Messages:
    2,527
    Likes Received:
    56
    Best Answers:
    0
    Trophy Points:
    90
    #3
    Oh, that works. Thanks for your advice.
     
    poshswinger, May 9, 2008 IP
  4. mizaks

    mizaks Well-Known Member

    Messages:
    2,066
    Likes Received:
    126
    Best Answers:
    0
    Trophy Points:
    135
    #4
    Happy to help.
     
    mizaks, May 9, 2008 IP