Search code examples
wordpressfooter

Change footer style on some pages in WordPress


I have a WordPress web site. I want to show some elements in footer just on my home page. But those show up on every pages. How can I do that?


Solution

  • It can be done by simple condition :

       <?php if (is_home()) { ?>
            //Call footer for home
        <?php } ?>