获取并显示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_Variable
get_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();
?>
已测试并正常工作
相关文章