esc_html_e [ WordPress Function ]
esc_html_e ( $text, $domain = 'default' )
| Parameters: |
|
| See: | |
| Defined at: |
|
Displays translated text that has been escaped for safe use in HTML output.
Examples [ wp-snippets.com ]
Top Google Search Results
- Function Reference/esc html e « WordPress Codex
Description. Displays translated text that has been escaped for safe use in HTML output. Usage. <?php esc_html_e( $text, $domain ); ?> Parameters ...
codex.wordpress.org - WordPress › Support » Translate esc_html_e in elegantthemes
How do I translate this string in elegantthemes. <h2> <?php esc_html_e('Hours Of Operation','MyCuisine'); ?></h2>. I already solved the translation with quotes ...
wordpress.org - esc_html_e (WordPress Function) - WPSeek.com
WordPress lookup for esc_html_e, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - esc_html_e | A HitchHackers guide through WordPress
Feb 11, 2011 ... Source code. function esc_html_e( $text, $domain = 'default' ) { echo esc_html( translate( $text, $domain ) ); }. 1030 ...
hitchhackerguide.com