接触WooCommerce过滤器

时间:2018-11-01 14:01:35

标签: php wordpress filter woocommerce hook

自从最近的WooCommerce更新以来,具有“ shopmanager”角色的用户不再能够编辑具有“ subscriber”角色的用户。

我发现以下功能对此负责:

function wc_modify_editable_roles( $roles ) {
  if ( is_multisite() && is_super_admin() ) {
    return $roles;
  }
  if ( ! wc_current_user_has_role( 'administrator' ) ) {
    unset( $roles['administrator'] );
    if ( wc_current_user_has_role( 'shop_manager' ) ) {
      $shop_manager_editable_roles = apply_filters( 'woocommerce_shop_manager_editable_roles', array( 'customer' ) );
      return array_intersect_key( $roles, array_flip( $shop_manager_editable_roles ) );
    }
  }
  return $roles;
}
add_filter( 'editable_roles', 'wc_modify_editable_roles' );

我需要将subscriber添加到apply_filters( 'woocommerce_shop_manager_editable_roles', array( 'customer' ) );中的数组中,但这就是我遇到的问题。

我如何加入该过滤器以添加额外的角色?

这是我到目前为止所能得到的(根本不起作用,但这只是一个开始:)

add_filter( 'woocommerce_shop_manager_editable_roles', 'addanotherrole' );

function addanotherrole() {
  $shop_manager_editable_roles = array( 'customer', 'subscriber' );
}

1 个答案:

答案 0 :(得分:1)

排序!

您需要像这样返回新的角色数组:

add_filter( 'woocommerce_shop_manager_editable_roles', 'addanotherrole' );
function addanotherrole($roles) {
    // add the additional role to the woocommerce allowed roles (customer)
    $roles[] = 'subscriber'; 

    // return roles array
    return $roles; 

希望对您有所帮助!