konu içersinde 3. <p> tagından sonra reklam ekler
single.php / yada o işi hangi sayfa görüyorsa ekleyin
<?php
$show_after_p = 3;
$content = apply_filters('the_content', $post->post_content);
if(substr_count($content, '<p>') > $show_after_p)
{
$contents = explode("</p>", $content);
$p_count = 1;
foreach($contents as $content)
{
echo $content;
if($p_count == $show_after_p)
{
?>
<hr>
<center>Reklam Kodları Buraya</center>
<hr>
<?php
}
$p_count++;
}
}
?>