PHP Classes

File: templates/wpcf-campaign-contribute-perks-template.php

Recommend this page to a friend!
  Classes of TJ Webb   WP Crowd Fund   templates/wpcf-campaign-contribute-perks-template.php   Download  
File: templates/wpcf-campaign-contribute-perks-template.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: WP Crowd Fund
Promote crowd-funding campaigns on WordPress sites
Author: By
Last change:
Date: 13 days ago
Size: 541 bytes
 

Contents

Class file image Download
<ul class="wpcf-campaign-contribute-perks">
    <?php foreach($perks as $perk): ?>
<li>
            <?php wpcf_contribute_perk_radio($perk); ?>
<div class="wpcf-perk-amount"><?php wpcf_perk_amount($perk); ?></div>
            <div class="wpcf-perk-title"><?php wpcf_perk_title($perk); ?></div>
            <div class="wpcf-perk-remaining"><?php wpcf_perk_remaining($perk); ?></div>
            <?php if(wpcf_perk_soldout($perk)): ?>
<div class="wpcf-perk-soldout"><?php echo __('Sold Out', 'wp crowd fund'); ?></div>
            <?php endif; ?>
</li>
    <?php endforeach; ?>
</ul>