Hi guys,
I have a piece of code that I want to run only in the homepage of my blog. The blog is setted up to display the latest posts. My code:
<?php if (is_home()) : ?>
(code that displays only in the homepage goes here)
<?php endif; ?>
This doesn't seem to work. I tried is_front_page() and nothing too. Any clues? BTW, this code is loaded in footer.php
Thanks,
Rod