好的,所以我将我的类别包装在一个 div 中
<div id="categoryf">
<?php $category = get_the_category(); echo $category[0]->cat_name;?>
</div>
它只显示第一个类别,我想要的方式,但我的要求是将某些类别放入不同的 div 中,以便我可以分配不同的背景颜色。
我将如何做到这一点。
编辑这里是我的 CSS
#categoryf{
position:absolute;
padding:4px;
width:auto;
height:13px;
margin-top:-86px;
font-family:abeatbykairegular;
font-weight:200;
font-size:13px;
font-weight:bold;
letter-spacing:6px;
color:#fff;
background:#2d0748;
overflow:hidden;
z-index:2;
}
#categoryf a:link,
#categoryf a:visited{
color:#fff;
}
#categoryf a:hover{
color:#af77c0;
text-decoration:none;
}