Skip to content

Instantly share code, notes, and snippets.

@amitabhaghosh197
Forked from bitfade/gist:4555047
Last active September 9, 2017 15:15
Show Gist options
  • Save amitabhaghosh197/5104ed4dde329718e90c275e867ad5af to your computer and use it in GitHub Desktop.
Save amitabhaghosh197/5104ed4dde329718e90c275e867ad5af to your computer and use it in GitHub Desktop.
WordPress - Remove empty p tags for custom shortcodes #wordpress #wordpress-shortcodes
// Remove all P tags from shortcodes
<?php
add_filter("the_content", "the_content_filter");
function the_content_filter($content) {
// array of custom shortcodes requiring the fix
$block = join("|",array("col","shortcode2","shortcode3"));
// opening tag
$rep = preg_replace("/(<p>)?\[($block)(\s[^\]]+)?\](<\/p>|<br \/>)?/","[$2$3]",$content);
// closing tag
$rep = preg_replace("/(<p>)?\[\/($block)](<\/p>|<br \/>)?/","[/$2]",$rep);
return $rep;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment