沃梦达 / 编程问答 / php问题 / 正文

获取并显示WooCommerce 3中的可变产品价格范围

Get and display the variable product price range in Woocommerce 3(获取并显示WooCommerce 3中的可变产品价格范围)

本文介绍了获取并显示WooCommerce 3中的可变产品价格范围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是WordPress和WooCommerce的新手。 我正在修改第二十七主题的搜索结果页面,使其看起来像一个表格。 大多数产品都是可变产品。我使用下面的代码在表格中显示结果

    <table class="search-res" style="table-layout: auto; width: 100%;">
            <tr><td>
            <?php
            if ( has_post_thumbnail()) 
                the_post_thumbnail('excerpt-thumb');        
                ?></td>
                <td>
                    <?php 
                    the_title( sprintf( '<th class="entry-title"><a href="%s" rel="bookmark">', esc_url( get_permalink() ) ) );
                    echo"</a></th>";
                    ?>
                </td>
                <td style="font-style:italic;font-size:small;"><?php the_excerpt(); ?></td>
            <th><?php 
                global $post;
   $product = new WC_Product($post->ID ); 
  echo wc_price($product->get_price_including_tax(1,$product->get_price()));
?></th>
            </tr>

        </table>

我面临的问题是,这里显示的是产品的最低价格。相反,我想要的是价格范围。 另外,如何才能使产品的评级和类别属性显示在表格中?

推荐答案

只需使用WC_Product_Variableget_price_html()方法即可完成:

<?php
global $post;

// Get the WC_Product_Variable instance Object
$product = wc_get_product( $post->ID ); // Works for any product type

// Displaying the formatted "Min" - "Max" price range
echo $product->get_price_html();
?>

已测试并正常工作

这篇关于获取并显示WooCommerce 3中的可变产品价格范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:获取并显示WooCommerce 3中的可变产品价格范围

基础教程推荐