我在 Wordpress 中使用了强大的表单,并且有一个注册用户的表单。我可以使用注册表单中的单选按钮来确定他们的角色。我有一个钩子。但是,我需要的是一个挂钩,它将根据表单条目 UPDATE 上的单选选择更改用户角色。我当前的代码仅适用于条目创建。这是在注册时分配角色的代码:
add_filter('frmreg_new_role', 'frmreg_new_role', 10, 2);
function frmreg_new_role($role, $atts){
extract($atts);
if($form->id == 8){
if($_POST['item_meta'][280] == 'Job Applicant')
$role = 'applicant';
}
return $role;
}
“8”是表单本身的 id。“280”是单选按钮字段的 ID,其中“求职者”是其中一个值。而“申请人”是我们网站的用户角色之一。
我需要对此进行调整,以便在条目创建后在更新时更改角色。我能找到的最接近的东西是在成功 PayPal 付款后更改用户角色的钩子。我试图将两者结合起来,但我无法让它发挥作用。这是 PayPal 生成的用户角色更改器:
add_action('frm_payment_paypal_ipn', 'change_paid_user_role');
function change_paid_user_role($args){
$new_role = 'contributor'; //change this to the role paid users should have
if(!$args['pay_vars']['completed'])
return; //don't continue if the payment was not completed
if(!$args['entry']->user_id or !is_numeric($args['entry']->user_id))
return; //don't continue if not linked to a user
$user = get_userdata($args['entry']->user_id);
if(!$user)
return; //don't continue if user doesn't exist
$updated_user = (array)$user;
// Get the highest/primary role for this user
$user_roles = $user->roles;
$user_role = array_shift($user_roles);
if ( $user_role == 'administrator' )
return; //make sure we don't downgrade any admins
$updated_user['role'] = $new_role;
wp_update_user($updated_user);
}
更新:动作挂钩可能应该是:根据强大的论坛,frm_after_create_entry。