Skip to content

Instantly share code, notes, and snippets.

@joeyz
Created October 16, 2014 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeyz/963bcdd12e84a1f3352d to your computer and use it in GitHub Desktop.
Save joeyz/963bcdd12e84a1f3352d to your computer and use it in GitHub Desktop.
Cleanup WP formatting for shortcodes
if( !function_exists('wpex_fix_shortcodes') ) {
function wpex_fix_shortcodes($content){
$array = array (
'<p>[' => '[',
']</p>' => ']',
']<br />' => ']'
);
$content = strtr($content, $array);
return $content;
}
add_filter('the_content', 'wpex_fix_shortcodes');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment