black101
BANNED
- Dec 2, 2010
- 1,436
- 1,640
im trying to have a adsense before all my post, i have manage to do it, but i want it to display in the middle, can someone help
i have pasted this code into the function.php
<?php
function bfa_add_adsense($post_body_content) {
$adsense_ad = '<div class="bfa-adsense">
ADSENSE
CODE
HERE
</div>';
if ( is_single() ) {
if (strpos($post_body_content,'%adsense%')!==FALSE) {
$post_body_content = str_replace('%adsense%', $adsense_ad, $post_body_content);
} else {
$post_body_content = $adsense_ad . $post_body_content;
}
}
return $post_body_content;
}
add_filter('the_content', 'bfa_add_adsense');
?>
i have pasted this code into the function.php
<?php
function bfa_add_adsense($post_body_content) {
$adsense_ad = '<div class="bfa-adsense">
ADSENSE
CODE
HERE
</div>';
if ( is_single() ) {
if (strpos($post_body_content,'%adsense%')!==FALSE) {
$post_body_content = str_replace('%adsense%', $adsense_ad, $post_body_content);
} else {
$post_body_content = $adsense_ad . $post_body_content;
}
}
return $post_body_content;
}
add_filter('the_content', 'bfa_add_adsense');
?>