How to add background image for home page only in wordpress

I am working on a wordpress theme and I want to add a background image for the homepage only, so please help me.

+3


source to share


1 answer


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

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

      

Or give an inline background



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

      

But I prefer the first option with the class

Good luck! :)

+2


source







All Articles