Skip to content

Instantly share code, notes, and snippets.

@richtabor
Last active May 16, 2020 18:22
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save richtabor/06c8f684e1eef24054798970d904b8df to your computer and use it in GitHub Desktop.
Save richtabor/06c8f684e1eef24054798970d904b8df to your computer and use it in GitHub Desktop.
<?php
// Use anytime HTML element encloses a section of data:
echo esc_html( $no_html );
// Use on all URLs, including those in the 'src' and 'href' attributes of an HTML element:
<img src="<?php echo esc_url( $escaped_url ); ?>" />
// Use for inline Javascript:
<a href="#" onclick="<?php echo esc_js( $escaped_js ); ?>"><?php esc_html__( 'Click Here', 'text-domain' ); ?></a>
// Use for an HTML attribute:
<div class="<?php echo esc_attr( $escaped_class ); ?>">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment