Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save berkaygeldec/5b74d9bf7bd08134abddca2fe9580830 to your computer and use it in GitHub Desktop.

Select an option

Save berkaygeldec/5b74d9bf7bd08134abddca2fe9580830 to your computer and use it in GitHub Desktop.
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');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment