16 Jun
Can we place adsense ads in the middle of the post ( single post ) like photo above ?
yes, we can do it and this is very easy because you only need to costumize your single.php file . This trick only work at single post or page or other template that showed full content.
1. open template single post (single.php)
2. find this code below
< ?php the_content(”); ?>
$where = 2;
$content = apply_filters('the_content', get_the_content());
$content = explode("
", $content);
for ($i = 0; $i if ($i == $where) { ?> //ADS Code < ?php } echo $content[$i] . " "; } ?>
Leave a reply