Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter ViviDroid

    (@vividroid)

    Or if it’s difficult to achieve then at last can I put the adsense below the top logo/menu bar? Like I illustrate here http://imgur.com/Igi4qac

    Where do you want to put adsense after the excerpt or between two articles?
    Also, do you have a shortcode for adsense?

    Thread Starter ViviDroid

    (@vividroid)

    Hi, thanks for reply
    Yes between excerpts and yes I have shortcode

    Can you try this?
    In your child theme functions.php

    add_action('__after_content', 'do_ad_sense');
    	function do_ad_sense(){
    		if ( tc__f('__is_home'))
    			//your shortcode here
    	}

    If it doesn’t work, try
    echo your_shortcode instead of ‘your shortcode here’

    Oh but if you want that just after the excerpt, and not after the whole content (excerpt + thumbnail). Use this

    add_filter('the_excerpt', 'do_ad_sense');
    function do_ad_sense($excerpt){
        if ( tc__f('__is_home'))
            return $excerpt . //your_shortcode_here
    }

    Should do the trick. Let me know..

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Blog excerpt and Adsense between’ is closed to new replies.