Skip to content

Instantly share code, notes, and snippets.

@thomasgriffin
Created February 6, 2015 18:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thomasgriffin/065903820d86889cbe85 to your computer and use it in GitHub Desktop.
Save thomasgriffin/065903820d86889cbe85 to your computer and use it in GitHub Desktop.
<?php // Do not include this opening tag.
add_filter( 'optin_monster_data', 'tgm_om_disable_tracking' );
function tgm_om_disable_tracking( $data ) {
$data['tracked'] = true;
return $data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment