【发布时间】:2020-07-28 13:11:36
【问题描述】:
我遇到了一些 PHP 初学者的问题...
我想根据产品变体是出租还是出售来更改可变产品的价格标签。每个产品都有两种选择。
我发现产品的帖子标题包含文字“租”或“购买”,具体取决于变体。
因此,我已经在此处找到了一些代码,以尝试根据产品帖子标题的结果显示不同的标签。目前看起来像这样(但不起作用!),感觉这完全是错误的方法,有人可以帮忙吗?
function sv_change_product_html( $price_html, $product ) {
$is_rental = get_post_meta( $product->id, 'post_title' );
$price = $product->get_regular_price();
if (strpos($is_rental, "Rent") !== false) {
$price_html = '<span class="amount">' . wc_price( $price ) . ' per week</span>';
}
else
{
$price_html = '<span class="amount">' . wc_price( $price ) . ' buy today</span>';
}
return $price_html;
}
【问题讨论】:
-
更新,变体文本实际上似乎在 post_excerpt,而不是 post_title.. 仍然不起作用
标签: php wordpress woocommerce product price