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

    Hi~
    I want to insert ads in between the article page(frontpage) , as shown below , hoping to get your help , very grateful !

    sample:

    http://ppt.cc/ACGQ

    #401188

    Hey yhzkiki!

    Try to add this to your functions.php

    function add_adsense_to_content() {
    	$text = get_the_content();
    	$text .= ' YOUR ADSENSE CODE HERE ';
    	return $text;
    }
    
    add_action( 'the_content', 'add_adsense_to_content', 6); 

    Cheers!
    Rikard

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