jackrabbit-d
10/18/2017 - 3:04 PM

Strip P tags from image-only lines in content area

/* ========================================================================= */
/* !STRIP P TAGS FROM IMAGES */
/* ========================================================================= */
function filter_ptags_on_images($content){
   return preg_replace('/<p>\s*(<a .*>)?\s*(<img .* \/>)\s*(<\/a>)?\s*<\/p>/iU', '\1\2\3', $content);
}
add_filter('the_content', 'filter_ptags_on_images');