Wordpress Add Google Anamytics in function


/ Published in: PHP
Save to your folder(s)

Simply paste the code below and insert your Google Analytics where it says paste your Google Analytics. You can paste the code once in your functions.php file and never have to worry about it again. We are adding an action to the wp_footer, so it will automatically insert adsense codes wherever on all pages you have the wp_footer string.


Copy this code and paste it in your HTML
  1. <?php
  2. add_action('wp_footer', 'add_googleanalytics');
  3. function add_googleanalytics() { ?>
  4. // Paste your Google Analytics code from Step 6 here
  5. <?php } ?>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.