Skip to content

Instantly share code, notes, and snippets.

@grappler
Created February 11, 2015 18:50
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 grappler/5646b6a015d220335807 to your computer and use it in GitHub Desktop.
Save grappler/5646b6a015d220335807 to your computer and use it in GitHub Desktop.
Escaping for textarea values while leaving both double and single quotes unconverted.
<?php
/**
* Escaping for textarea values while leaving both double and single quotes unconverted.
*
* @param string $text
* @return string
*/
function theme_slug_esc_text( $text ) {
return htmlspecialchars( $text, ENT_NOQUOTES, get_option( 'blog_charset' ) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment