Can I simply use htmlspecialchars instead of esc_attr?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
esc_attr() is written specifically for escaping a string that is to be used as an html attribute, which means also escaping single and double-quote characters etc. In general, it's better to use the data validation API that WP provides rather than the generic PHP functions. |
||||
|
|