For the complete documentation index, see llms.txt. This page is also available as Markdown.

How to unify Tracking ID prefix

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