【发布时间】:2020-09-11 10:45:49
【问题描述】:
根据Custom product price suffix for selected product categories in WooCommerce 答案代码,我使用以下方法将特定产品类别中的价格后缀更改为“每公斤”。但是,我需要排除此类别中的两种产品。谁能告诉我这是否可能。
add_filter( 'woocommerce_get_price_html', 'conditional_price_suffix', 20, 2 );
function conditional_price_suffix( $price, $product ) {
// HERE define your product categories (can be IDs, slugs or names)
$product_categories = array('cheese');
if( has_term( $product_categories, 'product_cat', $product->get_id() ) )
$price .= ' ' . __('per kg');
return $price;
}
非常感谢
【问题讨论】:
标签: php wordpress woocommerce prefix price