Skip to content

Instantly share code, notes, and snippets.

@norcross
Created April 27, 2015 16:58
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 norcross/89c86f9e607b8ce48313 to your computer and use it in GitHub Desktop.
Save norcross/89c86f9e607b8ce48313 to your computer and use it in GitHub Desktop.
remove some weird tags on shortcodes
<?php
add_filter( 'the_content', 'rkv_shortcode_cleanup',1001 );
/**
* remove weird tags
*
* @param [type] $content [description]
*/
function rkv_shortcode_cleanup( $content ) {
// clean it
$content = strtr( $content, array( '<p>[' => '[', ']</p>' => ']', ']<br>' => ']', ']<br />' => ']' ) );
// return the content
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment