第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

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

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

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

PHP
Smart貓小萌 2023-09-08 18:24:52
我需要在特定模板中顯示產(chǎn)品。這是模板代碼:<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貢獻(xiàn)1829條經(jīng)驗 獲得超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>

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


<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>


查看完整回答
反對 回復(fù) 2023-09-08
  • 1 回答
  • 0 關(guān)注
  • 100 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號