Blocking adsense ad units for a particular country [closed]

A quick google search gave me this. This plugin seems to have this feature: http://wordpress.org/extend/plugins/ad-injection/faq/ How can I show different ads to people in different countries? If you install the Country Filter plugin (with the IP database) then you can use the following code in the direct ad insertion modes. This will not work in … Read more

How to prevent Google adsense invalid impressions while performing admin tasks on my wordpress site?

The advertisements are only displayed on the Front-end of your site (whatever the visitors see). Since the ads are only displayed on the front-end, you don’t have to worry about generating invalid impressions by reloading your admin page, creating posts, etc. So long as you don’t open your website’s front-end area and start reloading like … Read more

Using tag to output text in Genesis?

You can hook in the banner using the the_content_more_link filter by modifying this code. add_filter( ‘the_content_more_link’, ‘sp_read_more_link’ ); function sp_read_more_link() { return ‘<a class=”your-banner” href=”‘ . get_permalink() . ‘”>[Banner Shortcode]</a>’; } Another option would be to create a shortcode for your banner, and add the shortcode to the the_content_more_link filter above. Or you could simply … Read more

How to add Adsense code to child theme

You can easily put your Google Adsense code within the <head> element of your WordPress site by using either of these methods in your functions.php file or by creating a plugin for that purpose: /** * Load my Google Adsense code. * * Here, your Google Adsense Code is stored within in your plugins directory, … Read more

Where to find HTML to post Adsense Code

Ads are most commonly displayed in the sidebar. You can add Google Adsense in your sidebar by using WordPress widgets. Simply go to Appearance » Widgets page in your WordPress admin area. Next, drag & drop the ‘Custom HTML’ widget to the appropriate widget area and paste your Google AdSense code in there.