Created
November 30, 2016 08:19
-
-
Save anestan/c273c647f1a5398c8746caf0fdab1c08 to your computer and use it in GitHub Desktop.
Remove P Tags From Images - Wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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*(<iframe .*>*.<\/iframe>)\s*<\/p>/iU', '\1', $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
http://wordpress.stackexchange.com/questions/195087/remove-p-tags-from-images