我正在使用 wordpress 主题,当某些变量的值是偶数或奇数时,我确实想使用 php 更改 2 个块的 css。
这是我的代码:
<?php
$i = 0;
while ( have_posts() ) {
// Override
if(($i % 2) == 1) { ?>
<style type="text/css">
.grid-box-img {
width: 54%;
float: left;
}
.entry-head {
width: 56%;
background-color: #fff;
position: absolute;
z-index: 10;
margin-left: 43%;
margin-top: 27%;
}
</style>
<?php
}
else { ?>
<style type="text/css">
.grid-box-img {
width: 54%;
float: right;
}
.entry-head {
width: 56%;
background-color: #fff;
position: absolute;
z-index: 10;
margin-top: 27%;
}
</style>
<?php
}
$i++;
the_post();
} ?>
但是,不幸的是它不起作用......它仅适用于最后一个值的 CSS。
我怎样才能做到这一点 ?谢谢 :)