Skip to content

Instantly share code, notes, and snippets.

@stephenbelyea
Created January 13, 2016 16:31
Show Gist options
  • Save stephenbelyea/8568aff939526b107f68 to your computer and use it in GitHub Desktop.
Save stephenbelyea/8568aff939526b107f68 to your computer and use it in GitHub Desktop.
WordPress Fix ShortCode Breaks
// Fix WP shortcode breaks.
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