Skip to content

Instantly share code, notes, and snippets.

@alessandrotesoro
Created March 5, 2014 13:42
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 alessandrotesoro/9367358 to your computer and use it in GitHub Desktop.
Save alessandrotesoro/9367358 to your computer and use it in GitHub Desktop.
Use minified libraries if SCRIPT_DEBUG is turned off
// Use minified libraries if SCRIPT_DEBUG is turned off
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
wp_enqueue_script( 'my-script-handle', plugin_dir_url( __FILE__ ) . 'assets/my-file' . $suffix . '.js', array( 'jquery' ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment