Skip to content

Instantly share code, notes, and snippets.

@BronsonQuick
Created April 6, 2012 10:30
Show Gist options
  • Save BronsonQuick/2318714 to your computer and use it in GitHub Desktop.
Save BronsonQuick/2318714 to your computer and use it in GitHub Desktop.
Fix empty paragraphs around shortcodes
<?php add_filter('the_content', 'shortcode_empty_paragraph_fix');
// Shortcodes
function shortcode_empty_paragraph_fix($content)
{
$array = array (
'<p>[' => '[',
']</p>' => ']',
']<br />' => ']'
);
$content = strtr($content, $array);
return $content;
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment