Skip to content

Instantly share code, notes, and snippets.

@mcanvar
Forked from theukedge/gist:6745757
Last active January 9, 2019 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mcanvar/b633923b18a382ec734cb0fc4518c049 to your computer and use it in GitHub Desktop.
Save mcanvar/b633923b18a382ec734cb0fc4518c049 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