user1406448
user1406448

Reputation:

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?

Upvotes: 1

Views: 45

Answers (1)

Helping Hands
Helping Hands

Reputation: 5396

It can be done by simple condition :

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

Upvotes: 2

Related Questions