Skip to content

Instantly share code, notes, and snippets.

@ivarvong
Created April 13, 2011 20:29
Show Gist options
  • Save ivarvong/918336 to your computer and use it in GitHub Desktop.
Save ivarvong/918336 to your computer and use it in GitHub Desktop.
<?php
/* use a regular expression to remove inline comments. in this case, everything gets removed if it's inside double at signs. @@so you could CQ this@@ */
function filter_remove_inline_comments($content) {
return preg_replace('/@@.*?@@/', '', $content);
}
add_filter('the_content', 'filter_remove_inline_comments', 5);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment