所以基本上在我的WordPress网站上我有3种不同的注册方式(std Reg。表格,社交媒体插件,会员注册)。这样我通过“user_register”跟踪新用户注册 Wordpress挂钩并通过电子邮件向CEO发送通知,
add_action( 'user_register', 'new_registration_email_notification', 10, 1 );
function new_registration_email_notification( $user_id )
{
global $current_user;
wp_mail( $multiple_recipients, $subject, $body, $headers );
}
此外,我需要在“user_register”挂钩中添加Google Analytics事件,以“捕获”所有3种注册方式,我已经从here了解到它应该是用PHP编写的GA客户端但是我不要真的看到它会像std GA javascript一样完成工作。
var Register= document.getElementById("Register");
Register.onclick = function() {
ga('send', 'event', 'Register', 'Click/Touch');
没有找到关于它的更多信息,所以如果有人可以提供一些解释,那就太棒了。
答案 0 :(得分:0)
这可能对您有用:Track event in google analytics upon clicking form submit
我知道有跟踪点击提交,我在你提供的资源链接上没有看到太多。
编辑:通过在提交按钮上创建回调,您可以这样跟踪您的寄存器。