Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Crocoblock/acfe55297157dd818f76dacb2a09912d to your computer and use it in GitHub Desktop.

Select an option

Save Crocoblock/acfe55297157dd818f76dacb2a09912d to your computer and use it in GitHub Desktop.

Revisions

  1. @LaxusCroco LaxusCroco renamed this gist Apr 7, 2023. 1 changed file with 0 additions and 0 deletions.
    File renamed without changes.
  2. @LaxusCroco LaxusCroco created this gist Apr 7, 2023.
    23 changes: 23 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,23 @@
    <?php

    /**
    * Add Google Tag Manager code for the <head> tag.
    */
    function custom_add_gtm_code() {
    ?>
    <!-- Add your GTM code snippet below this line -->

    <?php
    }
    add_action( 'wp_head', 'custom_add_gtm_code' );

    /**
    * Add Google Tag Manager code for the <body> tag.
    */
    function custom_add_gtm_code_noscript() {
    ?>
    <!-- Add your GTM code snippet below this line -->

    <?php
    }
    add_action( 'wp_body_open', 'custom_add_gtm_code_noscript' );