Skip to content

Instantly share code, notes, and snippets.

@TanvirAmi
Forked from theukedge/gist:6745757
Last active September 21, 2015 17:19
Show Gist options
  • Save TanvirAmi/e1ff8574d1a12ef4a69d to your computer and use it in GitHub Desktop.
Save TanvirAmi/e1ff8574d1a12ef4a69d to your computer and use it in GitHub Desktop.
<?php
$show_after_p = 2;
$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)
{
?>
YOUR AD CODE GOES HERE
<?php
}
echo "</p>";
$p_count++;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment