Buying Small Wordpress theme fix needed.

Discussion in 'Programming' started by discover, Feb 8, 2011.

  1. #1
    Hi
    I need a link to show only on the homepage of a template using this code:

    <?php if(is_home() && $post==$posts[0] && !is_paged()) { ?>
    <a href="http://www.domain.com/">Link</a>
    <?php } ?>

    but I cant get it to show correctly.
    Can someone help me out?
    Thanks
    Allan
     
    discover, Feb 8, 2011 IP
  2. gerulis

    gerulis Active Member

    Messages:
    30
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    63
    As Seller:
    100% - 0
    As Buyer:
    100% - 0
    #2
    try

    
    <?php if(is_front_page()) { ?>
    <a href="http://www.domain.com/">Link</a>
    <?php } ?>
    
    PHP:
     
    gerulis, Feb 8, 2011 IP