How to unify Tracking ID prefix
function my_cbtrkr_subid_prefix()
{
return 'yourprefix';
}
add_filter('cbtrkr_subid_prefix', 'my_cbtrkr_subid_prefix');Last updated
If you use the same Publisher ID on several WordPress installs (separate domains, subdomains, or subdirectories), you must use a unique tracking prefix for each site.
Add the following to your theme's functions.php file:
function my_cbtrkr_subid_prefix()
{
return 'yourprefix';
}
add_filter('cbtrkr_subid_prefix', 'my_cbtrkr_subid_prefix');Please use only letters (a-z) for the prefix.
Last updated