Need help with a code

black101

BANNED
Joined
Dec 2, 2010
Messages
1,436
Reaction score
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');
?>
 
Depending on your ad width use the following css:

Code:
.bfa-adsense {
width: 250px
margin-left: auto;
margin-right:auto;
}

Just change the width to suit your needs. You could do it with jQuery too, but this is simpler.
 
Depending on your ad width use the following css:

Code:
.bfa-adsense {
width: 250px
margin-left: auto;
margin-right:auto;
}

Just change the width to suit your needs. You could do it with jQuery too, but this is simpler.


thanks man
 
Back
Top