价格框里面有一个简短的代码

时间:2014-04-30 18:07:04

标签: wordpress loops

我想询问他们是否有可能在the_content()内部进行循环,以使每一行都有不同的颜色?

制作价格栏....

<div
    class="pricing-plan zero-margin <?php echo $style_class . ($last_column ? ' last' : '') . (!empty($highlight) ? ' highlight' : ''); ?>">
    <div class="top-header">
        <h3 class="center"><?php the_title() ?></h3>
        <?php if (!empty($tagline))
            echo '<p class="tagline center">' . $tagline . '</p>'; ?>
        <?php if (!empty($pricing_img_url))
            echo '<img alt="' . get_the_title() . '" src="' . $pricing_img_url . '" /><br>'; ?>
            <p class="plan-price plan-header center"><span class="button-price-plan"><?php echo $price_tag ?></span></p>
    </div>                     
    <div class="plan-details">
        <?php the_content(); ?>
    </div>
    <!-- .plan-details -->
    <div class="purchase">
        <a class="button default" href="<?php echo $pricing_url; ?>"
           target="_self"><?php echo $pricing_button_text; ?></a>
    </div>

</div>

1 个答案:

答案 0 :(得分:1)

您希望为内容的每个

标记添加不同的样式。您无法遍历内容

标记。 你可以用css

来做
p:nth-child(2)
{
background:#ff0000;
}

有关css nth-child选择器的更多详情,请访问此link