Advertisement
carlosmdh

add-gtm.php

Mar 23rd, 2023
1,158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.30 KB | None | 0 0
  1. <?php
  2. /*
  3. Plugin Name: Añadir el script de Google Tag Manager
  4. Plugin URI: http://carlosmdh.es
  5. Description: Plugin para insertar los Scripts de Google Tag Manager
  6. Version: 1.0.2
  7. Author: carlosmdh
  8. License: GPL 2+
  9. License URI:
  10. */
  11.  
  12. //Añadir el código de Google Tag Manager en el <head>//
  13.  
  14. add_action( 'wp_head', 'carlosmdh_google_tag_manager1' );
  15.  
  16. function carlosmdh_google_tag_manager1() { ?>
  17.  
  18.     <!-- Google Tag Manager -->
  19.     <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
  20.         new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
  21.         j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
  22.         'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
  23.     })(window,document,'script','dataLayer','GTM-WDV8SRG');</script>
  24.     <!-- End Google Tag Manager -->
  25.  
  26. <?php }
  27.  
  28. /// Añade el código de Google Tag Manager code justo antes de la de la etiqueta de cierre </body> //
  29.  
  30. add_action( 'wp_footer', 'carlosmdh_google_tag_manager2' );
  31.  
  32. function carlosmdh_google_tag_manager2() { ?>
  33.  
  34.     <!-- Google Tag Manager (noscript) -->
  35.     <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-WDV8SRG"
  36.     height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
  37.     <!-- End Google Tag Manager (noscript) -->
  38. <?php }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement