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中的可变产品价格范围
				
        
 
            
        
             猜你喜欢
        
	     - PHP foreach() 与数组中的数组? 2022-01-01
 - 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
 - 覆盖 Magento 社区模块控制器的问题 2022-01-01
 - 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
 - Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
 - 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
 - Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
 - openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
 - 如何在 Symfony2 中正确使用 webSockets 2021-01-01
 - PHP - if 语句中的倒序 2021-01-01
 
