Skip to content

Instantly share code, notes, and snippets.

@deryckoe
Last active August 29, 2015 14:07
Show Gist options
  • Save deryckoe/98982e42c4693f5b3185 to your computer and use it in GitHub Desktop.
Save deryckoe/98982e42c4693f5b3185 to your computer and use it in GitHub Desktop.
Shortcode Garbage Markup Cleanup
public function cleanup_shortcode_fix($content) {
$array = array('<p>[' => '[', ']</p>' => ']', ']<br />' => ']', ']<br>' => ']');
$content = strtr($content, $array);
return $content;
}
add_filter('the_content', 'cleanup_shortcode_fix');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment