functionwpapi_change_role_name(){

    global$wp_roles;

    if(!isset($wp_roles))

        $wp_roles=newWP_Roles();

    //Owner 更改为显示名称

    //administrator 更改为用户角色,例如 editor/author/contributor/subscriber

    $wp_roles->roles['administrator']['name']='管理员';

    $wp_roles->role_names['administrator']='超级版主';          

}

add_action('init','wpapi_change_role_name');