Advertisement
Guest User

Untitled

a guest
Jan 20th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. /**
  3. * Escape all translations with
  4. */
  5.  
  6. __( ‘Some String’, ‘text-domain’ ); _e( ‘Some string’, ‘text-domain’ );.
  7.  
  8. /**
  9. * When there is no HTML use:
  10. */
  11. esc_html__( ‘Some String’, ‘text-domain’ ); esc_html_e( ‘Some String’, ‘text-domain’ );
  12.  
  13. /**
  14. * For some HTML:
  15. */
  16. wp_kses( __( ‘Some String something’, ‘text-domain’ ), $allowed_html_array );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement