Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Last active December 25, 2015 11:19
Show Gist options
  • Save bhubbard/6968436 to your computer and use it in GitHub Desktop.
Save bhubbard/6968436 to your computer and use it in GitHub Desktop.
add_filter('yoast-ga-custom-vars','add_ga_custom_vars',10,2);
function add_ga_custom_vars($push, &$customvarslot) {
$my_custom_val = "whaterver";
$push[] = "'_setCustomVar',".$customvarslot.",'My_Custom_Variable','".$my_custom_val."',3";
$customvarslot++;
return $push;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment