本文整理汇总了PHP中wc_cart_totals_coupon_html函数的典型用法代码示例。如果您正苦于以下问题:PHP wc_cart_totals_coupon_html函数的具体用法?PHP wc_cart_totals_coupon_html怎么用?PHP wc_cart_totals_coupon_html使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wc_cart_totals_coupon_html函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
</td>
</tr>
<?php
foreach (WC()->cart->get_coupons() as $code => $coupon) {
?>
<tr class="cart-discount coupon-<?php
echo esc_attr(sanitize_title($code));
?>
">
<th><?php
wc_cart_totals_coupon_label($coupon);
?>
</th>
<td><?php
wc_cart_totals_coupon_html($coupon);
?>
</td>
</tr>
<?php
}
?>
<?php
if (WC()->cart->needs_shipping() && WC()->cart->show_shipping()) {
?>
<?php
do_action('woocommerce_review_order_before_shipping');
?>
示例2: esc_html
<th><?php echo esc_html( $tax->label ); ?></th>
<td><?php echo wp_kses_post( $tax->formatted_amount ); ?></td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr class="tax-total">
<th><?php echo esc_html( WC()->countries->tax_or_vat() ); ?></th>
<td><?php echo wc_price( WC()->cart->get_taxes_total() ); ?></td>
</tr>
<?php endif; ?>
<?php endif; ?>
<?php foreach ( WC()->cart->get_coupons( 'order' ) as $code => $coupon ) : ?>
<tr class="order-discount coupon-<?php echo esc_attr( $code ); ?>">
<th><?php echo $fix_coupon; ?> <?php echo esc_html( $code ); ?></th>
<td><?php wc_cart_totals_coupon_html( $coupon ); ?></td>
</tr>
<?php endforeach; ?>
<?php do_action( 'woocommerce_cart_totals_before_order_total' ); ?>
<tr class="total">
<th><strong><?php echo $order_total_fix; ?></strong></th>
<td><strong><?php wc_cart_totals_order_total_html() ?></strong></td>
</tr>
<?php do_action( 'woocommerce_cart_totals_after_order_total' ); ?>
</tbody>
</table>
<?php if ( WC()->cart->get_cart_tax() ) : ?>
示例3: esc_html
<th><?php echo esc_html( $tax->label ); ?></th>
<td><?php echo wp_kses_post( $tax->formatted_amount ); ?></td>
</tr>
<?php endforeach; ?>
<?php else : ?>
<tr class="tax-total">
<th><?php echo esc_html( WC()->countries->tax_or_vat() ); ?></th>
<td colspan="2"><?php echo wc_price( WC()->cart->get_taxes_total() ); ?></td>
</tr>
<?php endif; ?>
<?php endif; ?>
<?php foreach ( WC()->cart->get_coupons( 'order' ) as $code => $coupon ) : ?>
<tr class="order-discount coupon-<?php echo esc_attr( $code ); ?>">
<th><?php $fix_coupon; ?> <?php echo esc_html( $code ); ?></th>
<td colspan="2"><?php wc_cart_totals_coupon_html( $coupon ); ?></td>
</tr>
<?php endforeach; ?>
<?php do_action( 'woocommerce_review_order_before_order_total' ); ?>
<tr class="total">
<th><?php echo $order_total_fix; ?></th>
<td colspan="2"><strong><?php wc_cart_totals_order_total_html(); ?></strong></td>
</tr>
<?php do_action( 'woocommerce_review_order_after_order_total' ); ?>
</tfoot>
<tbody>
<?php
示例4: woocommerce_cart_totals_coupon_html
/**
* @deprecated
*/
function woocommerce_cart_totals_coupon_html($coupon)
{
wc_cart_totals_coupon_html($coupon);
}
示例5: foreach
</span></li>
<?php
foreach (WC()->cart->get_coupons() as $code => $coupon) {
?>
<ul class="cart-discount coupon-<?php
echo esc_attr(sanitize_title($code));
?>
">
<li><?php
wc_cart_totals_coupon_label(true);
?>
</li>
<li><?php
wc_cart_totals_coupon_html(true);
?>
</li>
</ul>
<?php
}
?>
<li class="cartGrandT"><?php
_e('Total', 'woocommerce');
?>
: <span><?php
wc_cart_totals_order_total_html();
?>
</span></li>
</ul>