【发布时间】:2019-02-16 19:51:53
【问题描述】:
我对 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>
我面临的问题是这里显示了产品的最低价格。相反,我希望显示价格范围。 另外,我怎样才能让产品的评级和类别属性显示在表格中?
【问题讨论】:
标签: php wordpress woocommerce product price