Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stalukder03/b203a8faae0a97ce94f2f271cd6cfa7b to your computer and use it in GitHub Desktop.
Save stalukder03/b203a8faae0a97ce94f2f271cd6cfa7b to your computer and use it in GitHub Desktop.
Escape translated strings
/**
* Escape translated strings with:
*/
__( ‘Hello world’, ‘text-domain’ ); _e( ‘Hello world’, ‘text-domain’ );.
/**
* If there is no HTML use:
*/
esc_html__( ‘Hello world’, ‘text-domain’ ); esc_html_e( ‘Hello world’, ‘text-domain’ );
/**
* When there's some HTML use:
*/
wp_kses( __( ‘Hello world’, ‘text-domain’ ), $allowed_html_array );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment