Adsense
Section Targeting is one
of the most important and valuable
method to achieve better Adsense CTR.
Section targeting method allows Adsense
publishers to fine-tune their content
and help Adsense crawler to determine
the main theme of the content and
deliver the ads based on the theme.
You can use Adsense section targeting
to ignore some parts of content for
which you don’t want Adsense to display
ads. It’s very easy to implement this
technique and be sure to implement
this method only on the pages which
has more content rich pages otherwise
you end up receiving public service
ads or irrelevant ads.
To implement Adsense section targeting,
you need to add a set of special HTML
comment tags to your code. These tags
will mark the beginning and end of
whichever section(s) you'd like to
emphasize or de-emphasize for ad targeting.
The HTML tag to emphasize a page for
Adsense section targeting take the
following format:
<!-- google_ad_section_start -->
<!-- google_ad_section_end -->
You can also use another tag to tell
AdSense Bot to ignore that section,
to accomplish this you have to simply
use (weight=ignore) tag inside start
tag.
<!-- google_ad_section_start(weight=ignore)
-->
With these tags added to your web
pages the final code will look something
like this
<html><head><title>Your
Webpage Title</title></head>
<body>
<table><tr>
<!-- google_ad_section_start(weight=ignore)
-->
<td>Left side bar menu</td>
<!-- google_ad_section_end -->
<td>
<!-- google_ad_section_start -->
This is my post article content
<!-- google_ad_section_end -->
</td>
<!-- google_ad_section_start(weight=ignore)
-->
<td> Right Side bar Menu</td>
<!-- google_ad_section_end -->
</tr></table>
</body>
</html>
Google says you can use section targeting
to make suggestions about as many
sections of a page as you like. However,
please be aware that we can't guarantee
results, and that it may take up to
2 weeks before our crawlers take into
account any changes you've made to
your site. So be patience, once you
applied Adsense section targeting
to your site and only revert back
after 15-20 days to see if this method
works on your site or not. |