Skip to content

Instantly share code, notes, and snippets.

@theukedge
Last active March 21, 2017 12:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save theukedge/6745757 to your computer and use it in GitHub Desktop.
Save theukedge/6745757 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++;
}
}
?>
@blurain82
Copy link

hi, This code is nice but
Some pages do not show content but only visible visual. How to fix this code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment