gpt4 book ai didi

css - 如何使用 body_class 根据页面层次结构更改 css

转载 作者:行者123 更新时间:2023-11-28 16:36:17 25 4
gpt4 key购买 nike

尝试根据我的 Wordpress 页面层次结构设置各种 css 规则,发现 wordpress 可以使用 body_class 自动生成这些规则但我完全不知道如何实现它。有人可以逐步向我解释吗? (也就是说,我需要在 functions.php 中放入什么,我需要在 css 文件中放入什么)?

基本上,我想根据父页面的内容更改页眉文本背景。例如:

  • .../news 及其所有子页面(...news/newsletter-signup、news/submit 等)都是蓝色的
  • .../community 及其所有子页面(...community/resources/supermarkets、...community/how-to/pay-utilities 等)将为紫色。
  • .../events,它的所有子页面都是橙色的。

TIA!

最佳答案

例如,我们有标准页面,例如:

<html>
<head>
<!-- HEAD CONTENT -->
</head>
<body>
<div class="container">
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
</div>
</body>
</html>

因此,我们可以使用 body_class() 函数为不同类别类型自定义 View 。

首先:将 body_class() 函数放入 body 标签

<body <? body_class(); ?>>

其次:为每个类别编写类

body.home .post, body.news .post, body.blog .post {
width: 640px;
display: block;
clear: both;
}

body.portfolio .post, body.work .post, body.projects .post {
width: 200px;
display: block;
float: left;

}

现在主页、博客和新闻类别中的所有帖子都逐行显示。

投资组合部分和类别元素中的所有出版物都显示在三列中。

主页、新闻和博客示例:

body,
html {
width: 100%;
background-color: #333;
}
.container {
margin: 10px auto;
width: 660px;
background-color: #ccc;
}
.post {
background-color: #fff;
box-sizing: border-box;
margin: 10px;
padding: 10px;
min-height: 240px;
border: 1px solid #666;
}
body.home .post,
body.news .post,
body.blog .post {
width: 640px;
display: block;
clear: both;
}
body.portfolio .post,
body.work .post,
body.projects .post {
width: 200px;
display: block;
float: left;
}
<html>

<head>
<!-- HEAD CONTENT -->
</head>

<body class="home">
<div class="container">
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<br clear="all">
</div>
</body>

</html>

作品、元素和作品集示例:

body,
html {
width: 100%;
background-color: #333;
}
.container {
margin: 10px auto;
width: 660px;
background-color: #ccc;
}
.post {
background-color: #fff;
box-sizing: border-box;
margin: 10px;
padding: 10px;
min-height: 240px;
border: 1px solid #666;
}
body.home .post,
body.news .post,
body.blog .post {
width: 640px;
display: block;
clear: both;
}
body.portfolio .post,
body.work .post,
body.projects .post {
width: 200px;
display: block;
float: left;
}
<html>

<head>
<!-- HEAD CONTENT -->
</head>

<body class="work">
<div class="container">
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<div class="post">
<h1>Title of post</h1>
<p>Text or another content of post</p>
</div>
<br clear="all">
</div>
</body>

</html>

关于css - 如何使用 body_class 根据页面层次结构更改 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28108782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com