Wordpress中的多个背景包装

时间:2013-04-12 16:44:20

标签: php css wordpress background

如何在wordpress中为index.php,archive.php和single.php设置特定的背景?

我尝试在每个案例的特定div上使用css对象,但是不起作用,因为任何非index.php都从索引继承主页。

我也试过了multibackground manager插件,但是它改变了背景而不是包装器,实际的背景图像改为内容。

有没有办法实现这个目标?

提前致谢!

1 个答案:

答案 0 :(得分:2)

你的每个页面上都有一个特定的课程,为什么不使用它(通过首先放置.home,以防万一:P)。 一个粗略的例子:

.home { background: red; }
.single { background: blue; }
.archive { background: green; }

详细程度编辑:

正如您所提到的,如果您在CSS中声明了这一点:

body { background:url(images/body.png); }

..其他页面使用..

body.single { background:url(images/body-single.png); }
body.archive { background:url(images/body-archive.png); }

..等等。