" . get_option('add_adsense_bottom') . "";
echo $content;
}
/***************** This is inserted add in the header posts *************************/
function add_adsense_posts() {
echo "
" . get_option('add_adsense_top') . "
"; }
add_filter('the_content', 'add_adsense_content_posts');
function add_adsense_content_posts($content) {
if (is_single()) {
$content .= add_adsense_posts();
}
return $content;
}
function add_adsense_settings_page() {
?>