Hi There,
Please add the following code under functions.php file locates under child theme:
/* -- Print Ad Before Post Content -- */
add_action( 'x_before_view_global__content-the-content', 'x_print_ga_1' );
function x_print_ga_1(){
?>
<!-- Your GA code go here -->
<?php
}
/* -- Print Ad After Post Content -- */
add_action( 'x_after_view_global__content-the-content', 'x_print_ga_2' );
function x_print_ga_2(){
?>
<!-- Your GA code go here -->
<?php
}
Hope it helps 🙂