Forums
Forums / Fixing WordPress / Links in footer
(@shaigan)
15 years, 8 months ago
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 🙂
(@rvoodoo)
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!
The topic ‘Links in footer’ is closed to new replies.