Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save besimhu/d38480d690f0ba0601b8 to your computer and use it in GitHub Desktop.
Save besimhu/d38480d690f0ba0601b8 to your computer and use it in GitHub Desktop.
Remove paragraph tags around photos and instead add <figure> tag
// Remove paragraph tags around photos and instead add <figure> tag
function img_unautop($pee) {
$pee = preg_replace('/<p>\\s*?(<a .*?><img.*?><\\/a>|<img.*?>)?\\s*<\\/p>/s', '<figure class="post-img">$1</figure>', $pee);
return $pee;
}
add_filter( 'the_content', 'img_unautop', 30 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment