Promote your Service and Product online Contact us

+91 87 44 999667; +91 99 11 883996 info@3pixls.com, sales@3pixls.com

How to Remove p tag from around images in the_content


Adding this snippet to the “functions.php” of your wordpress theme will remove the HTML p tag from around images in the_content.
[php]
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’);
[/php]