Skip to content

Instantly share code, notes, and snippets.

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 kellenmace/a4dcc88a42278ea72d9e to your computer and use it in GitHub Desktop.
Save kellenmace/a4dcc88a42278ea72d9e to your computer and use it in GitHub Desktop.
function km_enqueue_customizer_scripts() {
global $wp_customize;
if ( ! isset( $wp_customize ) ) {
return;
}
wp_enqueue_script( 'customizer_scripts', PLUGIN_URL . 'assets/js/customizer_scripts.js', 'jquery' );
}
add_action( 'admin_enqueue_scripts', 'km_enqueue_customizer_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment