cdk4999
cdk4999

Reputation: 47

How to add background image for only home page in wordpress

I have been working on wordpress theme & i want to add background image for only home page so please, help me.

Upvotes: 3

Views: 854

Answers (1)

Matej Đaković
Matej Đaković

Reputation: 880

You can add to body tag php if home get class "yourClass" and give BG for that class in css

<body class="<?php if (is_home()){echo 'yourClass';} ?>">

Or give inline background

<body <?php if (is_home()){echo 'style="background-image:url(images/yourBG.jpg);"';} ?>>

But i prefer first option with class

Good luck! :)

Upvotes: 3

Related Questions