Adding google adsense code

Hi I am trying to add the google Adsense code to my site. I have integrity installed and am using a child theme. What code should I add to my functions.php file to insert the google Adsense code to the header? Thanks.

Hi,

To add google adsense code in the header, please add the code below at the end of your child theme’s functions.php file.

function add_google_adsense() {   
    ?>
 
  ADD GOOGLE ADSENSE CODE HERE

<?php    
}}
add_action( 'x_after_view_global__slider-below', 'add_google_adsense', 10 );

For future reference on how to create code like this. Please refer to the link below

https://theme.co/apex/forum/t/customizations-actions-and-filters-in-x/208

Thanks

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