Skip to content

Instantly share code, notes, and snippets.

@deeman
Created May 6, 2020 17:58
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 deeman/298e6bb0b21701b99f4cc80b16fd7444 to your computer and use it in GitHub Desktop.
Save deeman/298e6bb0b21701b99f4cc80b16fd7444 to your computer and use it in GitHub Desktop.
Manually Add Google Analytics Code to WordPress in functions.php
<?php
add_action('wp_footer', 'add_googleanalytics');
function add_googleanalytics() { ?>
// Paste your Google Analytics code here
<?php }
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment