如何在wordpress中仅为主页添加背景图像

时间:2014-11-30 12:29:29

标签: wordpress image background

我一直致力于wordpress主题&我想只为主页添加背景图片所以请帮助我。

1 个答案:

答案 0 :(得分:2)

你可以添加身体标签 php如果在家获得课程" yourClass" 并在css中为该课程提供BG

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

或者提供内联背景

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

但我更喜欢 class

的第一个选项 祝你好运! :)