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
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
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,
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.