Google search console

Hello, My google search property can not be verified through google analytics.
I put the code where on the site?

Hello @Pinelopi,

Thanks for asking. :slight_smile:

  • You can add following code in child theme function.php file:

      function third_party_tracking_code() { ?>
    
        <script>
         
        // Google tracking code.
        </script>
    
      <?php }
    
      add_action( 'wp_head', 'third_party_tracking_code' );  
    

Replace // Google tracking code. with the tracking code.

Then add your code in Scripts in Header

  • Alternatively you also use following plugin to add the tracking code

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.