[code_snippet id=6 php format]

// Remove tags from the front end function remove_noscript_tags($content) { // Strip tags $content = preg_replace(‘/]*>(.*?)</noscript>/is’, ”, $content); return $content; } add_filter(‘the_content’, ‘remove_noscript_tags’);