Skip to content

Instantly share code, notes, and snippets.

@farnscosnippet
Last active June 8, 2016 17:29
Show Gist options
  • Save farnscosnippet/5357757 to your computer and use it in GitHub Desktop.
Save farnscosnippet/5357757 to your computer and use it in GitHub Desktop.
WORDPRESS: Removed <p> from Images and iFrames
//filter the <p> tags from the images and iFrame
function filter_ptags_on_images($content) {
$content = preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
return preg_replace('/<p>\s*(<span .*>)?\s*(<iframe .*>*.<\/iframe>)\s*(<\/span>)?\s*<\/p>/iU', '\1\2\3', $content);
}
add_filter('the_content', 'filter_ptags_on_images');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment