How do I show google ads between post content?
You can use a shortcode or the_content filter. I think the_content filter is better because your don’t introduce any string in your post, so the content can be exported and used in another platforms if needed. For emxample, for show a block of adsense after the first parragraph: add_filter( ‘the_content’, ‘tbn_ads_inside_content’ ); function tbn_ads_inside_content( $content … Read more