Skip to content

Instantly share code, notes, and snippets.

@Musilda
Created October 29, 2019 04:11
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 Musilda/3dbedf011f3fbacc52421ceeb7bca7ef to your computer and use it in GitHub Desktop.
Save Musilda/3dbedf011f3fbacc52421ceeb7bca7ef to your computer and use it in GitHub Desktop.
<?php
// 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