计算wordpress代码错误

时间:2014-03-27 05:18:08

标签: php wordpress

这段代码有什么问题?

计数工作正常,但我的代码有问题,有人可以帮帮我吗?

由于

<div <?php if (($count%3)==0) {post_class("$term_list one-third column ultimo")}
else {post_class("$term_list one-third column")} ?> >

1 个答案:

答案 0 :(得分:1)

尝试以下方式,确保您的$count$term_list两个变量在当前范围内可用:

<?php if ( ($count % 3) == 0 ): $classes = array($term_list, 'one-third', 'column ultimo'); ?>
    <div <?php post_class($classes); ?>>
<?php else: ?>
    <div>
<?php endif;?>