预计阅读时间: < 1 分钟

add_filter(‘woocommerce_get_price_html’,’members_only_price’);
function members_only_price($price){
if(is_user_logged_in() ){
return $price;
}
else return ‘登录注册查看价格!';
}

把这行代码放进你主题的function.php函数里即可。

此文章对你有帮助吗? 已有 0 人说这篇文章是有用的。