Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joseyaz/c3713e9fb691fb49d351f1ef0a2d26a1 to your computer and use it in GitHub Desktop.
Save joseyaz/c3713e9fb691fb49d351f1ef0a2d26a1 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