Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bogdan-mainwp/c0a77901e5d9fea0085c47e6973016f9 to your computer and use it in GitHub Desktop.
Save bogdan-mainwp/c0a77901e5d9fea0085c47e6973016f9 to your computer and use it in GitHub Desktop.
Custom snippet for disabling referral in Google Analytics
<?php
// Add the following code snippet to the functions.php file of the MainWP Customisations plugin
// Download MainWP Customisations here: https://github.com/mainwp/mainwp-customisations
// More about the plugin: https://mainwp.com/mainwp-customisations/
add_filter( 'mainwp_open_hide_referrer', 'myhook_mainwp_open_hide_referrer');
function myhook_mainwp_open_hide_referrer() {
return true;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment