Hello, I need a Help with my WordPress blog. I want a PHP code that I could put in footer.php (theme template) to display a Link in the footer on Homepage, Categories & Archives pages ONLY. Please, Give me the right code to place. Thanks in advance!
i guess this should work, add this on the footer.php where you want the link: <?php if(is_front_page() || is_category()) echo "<a href='http://...'>the link</a>"; ?> PHP: