Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #875014

    jsowers897
    Participant

    Can you please tell me how to add Google Adsense to pages & posts? Your Raw content doesn’t work. After looking thru this forum all I see is Function.php scripts, this cannot possibly be the only way?

    #875218

    Thai
    Moderator

    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 🙂