Basic unit tests and additional documentation for wp_strip_all_tags().

props joehoyle.
fixes #25507.


git-svn-id: https://develop.svn.wordpress.org/trunk@27042 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin
2014-01-27 03:15:29 +00:00
parent c759a54b2c
commit 0406e11513
2 changed files with 37 additions and 0 deletions
+4
View File
@@ -3568,6 +3568,10 @@ function normalize_whitespace( $str ) {
/**
* Properly strip all HTML tags including script and style
*
* This differs from strip_tags() because it removes the contents of
* the <script> and <style> tags. E.g. strip_tags( '<script>something</script>' )
* will return 'something'. wp_strip_all_tags will return ''
*
* @since 2.9.0
*