Skip to content

Instantly share code, notes, and snippets.

@stalukder03
Forked from kailoon/translation.php
Created February 26, 2019 05:47
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 stalukder03/9328aaf03a5ea0e18fada469b2e50eb6 to your computer and use it in GitHub Desktop.
Save stalukder03/9328aaf03a5ea0e18fada469b2e50eb6 to your computer and use it in GitHub Desktop.
<?php
/**
* Escape all translations with
*/
__( ‘Some String’, ‘text-domain’ ); _e( ‘Some string’, ‘text-domain’ );.
/**
* When there is no HTML use:
*/
esc_html__( ‘Some String’, ‘text-domain’ ); esc_html_e( ‘Some String’, ‘text-domain’ );
/**
* For some HTML:
*/
wp_kses( __( ‘Some String something’, ‘text-domain’ ), $allowed_html_array );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment