php WooCommerce:修改WooCommerce默认客户角色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WooCommerce:修改WooCommerce默认客户角色相关的知识,希望对你有一定的参考价值。

<?php // Do not include this if already open! Code goes in theme functions.php.
/**
 * woocommerce_custom_new_customer_data
 *
 * @access      public
 * @since       1.0 
 * @return      void
*/
function woocommerce_custom_new_customer_data( $new_customer_data ) {
	
	$new_customer_data['role'] = 'subscriber';
	
	return $new_customer_data;
	
}
add_filter( 'woocommerce_new_customer_data', 'woocommerce_custom_new_customer_data');

以上是关于php WooCommerce:修改WooCommerce默认客户角色的主要内容,如果未能解决你的问题,请参考以下文章

WooCommerce 4.3发布!- WP站长

注册后 Woocommerce 重定向

Woocommerce如何处理订阅结算?

php WooCommerce:修改WooCommerce默认客户角色

Woocommerce 添加到购物车按钮重定向到结帐

php 修改WooCommerce Shop图片大小#woocommerce #enfold