Hey,
Just wondering, is it possible to place a link in the footer and have it show up on the home page only?
Any help appreciated :)
Hey,
Just wondering, is it possible to place a link in the footer and have it show up on the home page only?
Any help appreciated :)
yup, you would need to use a conditional
http://codex.wordpress.org/Conditional_Tags#The_Front_Page
<?php
if (is_front_page()) {
echo 'your link here';
}
?>
I believe....
worked perfect, thanks!
This topic has been closed to new replies.