'; echo '
A simple plugin to help make your Google AdSense Ads display better, more relevant ads. I hope you like this WordPress plugin. Say thanks by stopping by my site.
'; echo 'Just select Content or Tags to have the Google Ad Section code placed...
'; echo ''; echo ''; echo ''; } $filterad = get_option('advadwhere'); if($filterad=="content") { add_filter('the_content', 'adsense_ad_tjg'); } elseif($filterad=="tags") { add_filter('the_tags', 'adsense_ad_tjg'); } else { add_filter('the_content', 'adsense_ad_tjg'); } function adsense_ad_tjg($content) { $content = "".$content.""; return $content; } ?>