Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ccurtin/79fb6740bf91fb5f3db2 to your computer and use it in GitHub Desktop.

Select an option

Save ccurtin/79fb6740bf91fb5f3db2 to your computer and use it in GitHub Desktop.
Strip shortcode tags but keep the inner contents of it
<?php
function clean_content()
{
$the_content = get_the_content();
$the_content = preg_replace("~(?:\[/?)[^/\]]+/?\]~s", '', $the_content);
return $the_content;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment