Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1260074

    Hello I wish to add some additional seo tracking code. I have the script to add and it needs to go into the body for each page <body></body> . I have google tracking script in the theme google services section. Can I add the additional script here or should it go elsewhere. thanks.

    • This topic was modified 4 years ago by Dogmut.
    #1260277

    Hey Dogmut,

    Please try this in your functions.php file:

    function add_tracking_code_after_body_tag(){
    ?>
    Your script goes here
    <?php
    }
    add_action('ava_after_body_opening_tag', 'add_tracking_code_after_body_tag');

    Best regards,
    Rikard

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.