Skip to content

Instantly share code, notes, and snippets.

@aosteraas
Created February 10, 2013 22:56
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 aosteraas/4751417 to your computer and use it in GitHub Desktop.
Save aosteraas/4751417 to your computer and use it in GitHub Desktop.
<?php
// Remove p tags from images
function remove_img_p_tag($content){
return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
}
add_filter('the_content', 'remove_img_p_tag');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment