admin管理员组文章数量:1332394
I want to change the referral link structure
Currently it's:
I want to change it to:
/?pkey=username
User ID shortcode
$user_ID = get_current_user_ID();
function mwb_wpr_create_referral_code()
{
$length = 10;
$pkey = '';
$alphabets = range('A','Z');
$numbers = range('0','9');
$final_array = array_merge($alphabets,$numbers);
while($length--)
{
$key = array_rand($final_array);
$pkey .= $final_array[$key];
}
return $pkey;
}
本文标签: shortcodeUser name in referral URLs
版权声明:本文标题:shortcode - User name in referral URLs 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742281888a2446245.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论