Advertisement
fauzanjeg

Profecient || Add Google Analytics code to the site

Mar 2nd, 2025
355
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.34 KB | None | 0 0
  1. if ( ! function_exists( 'add_google_analytics_code' ) ) {
  2.     /**
  3.      * Add Google Analytics code to the site
  4.      */
  5.     function add_google_analytics_code() {
  6.         // INSERT YOUR CODE HERE
  7.         echo '<script async src="https://www.googletagmanager.com/gtag/js?id=UA-XXXXXXXXX-X"></script>';
  8.     }
  9.     add_action( 'wp_head', 'add_google_analytics_code' );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement