Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save matthewpizza/71b7973837a39db6a49f to your computer and use it in GitHub Desktop.

Select an option

Save matthewpizza/71b7973837a39db6a49f to your computer and use it in GitHub Desktop.
JavaScript check to see if a WordPress site is currently being loaded by the Theme Customizer
/**
* Is this WordPress site currently being loaded in the theme customizer iframe?
*
* @return {Boolean} Most likely.
*/
function isThemeCustomizer() {
if ( window.parent.location === window.location ) {
return false;
}
if ( null === window.parent.document.getElementById( 'customize-preview' ) ) {
return false;
}
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment