I want to know use of esc_attr()?
how it is used?
Any example would be highly help!

esc_attr( $variable )

2 Answers
2

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.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *