亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

在自定義模板中顯示 WooCommerce 產品價格(帶折扣)

在自定義模板中顯示 WooCommerce 產品價格(帶折扣)

PHP
Smart貓小萌 2023-09-08 18:24:52
我需要在特定模板中顯示產品。這是模板代碼:<div class="searchproduct">    <div class="searchsingle">        <?php the_post_thumbnail( 'medium_large' ); ?>        <h2 class="woocommerce-loop-product__title"><?php echo esc_html( get_the_title() ); ?></h2>        <div class="price"><span class="woocommerce-Price-amount amount"><?php echo $product->get_price(); ?><span class="woocommerce-Price-currencySymbol"> €</span></span></div>        <a href="<?php the_permalink(); ?>">            <div class="button">Ajouter au panier</div>        </a>    </div></div>我想顯示價格(有折扣)和舊價格。<?php echo $product->get_price(); ?>我怎樣才能改變這個變量?
查看完整描述

1 回答

?
PIPIONE

TA貢獻1829條經驗 獲得超9個贊

只需使用以下WC_Product方法get_price_html()即可:


<div class="searchproduct">

    <div class="searchsingle">

        <?php the_post_thumbnail( 'medium_large' ); ?>

        <h2 class="woocommerce-loop-product__title"><?php echo esc_html( get_the_title() ); ?></h2>

        <div class="price"><?php echo $product->get_price_html(); ?></div>

        <a href="<?php the_permalink(); ?>">

            <div class="button"><?php _e("Ajouter au panier", 'woocommerce'); ?</div>

        </a>

    </div>

</div>

或者,如果您在產品促銷時只想要一種格式的價格,您將使用:


<div class="searchproduct">

    <div class="searchsingle">

        <?php the_post_thumbnail( 'medium_large' ); ?>

        <h2 class="woocommerce-loop-product__title"><?php echo esc_html( get_the_title() ); ?></h2>

        <div class="price"><?php wc_price( wc_get_price_to_display($product) ); ?></div>

        <a href="<?php the_permalink(); ?>">

            <div class="button"><?php _e("Ajouter au panier", 'woocommerce'); ?</div>

        </a>

    </div>

</div>


查看完整回答
反對 回復 2023-09-08
  • 1 回答
  • 0 關注
  • 110 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號