How to place a Link on front page only wordpress!!

Discussion in 'WordPress' started by Sana Hayat, Jul 11, 2008.

  1. #1
    I need to know that how i can place a link on the front page only and not as sitewide.

    I am using wordpress.So please if some one can help me out for this issue.

    The link must appear on the front page only and not as sitewide.



    Thanks
    SANA HAYAT
     
    Sana Hayat, Jul 11, 2008 IP
  2. jon0704

    jon0704 Peon

    Messages:
    606
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #2
    the PHP code

    <?php if ( is_home() ) {  echo "LINK" ;     }?>
    Code (markup):
    i hope this helps.

    Just place the code where you want it to display
     
    jon0704, Jul 11, 2008 IP
  3. Mr.Kehidupang

    Mr.Kehidupang Banned

    Messages:
    47
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Maybe you also can setting it from your Main Index Page Layout....
    Enter your HTML code and place the link where do you want on homepage only!
    :)

    Regards,
     
    Mr.Kehidupang, Jul 12, 2008 IP
  4. deluxdon

    deluxdon Catch Me If You Can...!!!™ Staff

    Messages:
    25,481
    Likes Received:
    1,943
    Best Answers:
    32
    Trophy Points:
    480
    #4
    You need to add below given code for that.

    <?php if(is_home() && $post==$posts[0] && !is_paged()) { ?>
    You need to add your advert code here which is shown on the homepage only.
    <?php } ?>
    Code (markup):
    DON.
     
    deluxdon, Jul 12, 2008 IP