Skip to content

Instantly share code, notes, and snippets.

@illucent
Forked from farnscosnippet/gist:5357757
Created March 22, 2014 21:34
Show Gist options
  • Save illucent/9714732 to your computer and use it in GitHub Desktop.
Save illucent/9714732 to your computer and use it in GitHub Desktop.
//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