Skip to content

Instantly share code, notes, and snippets.

@grappler
Created February 28, 2014 08:57
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 grappler/9267682 to your computer and use it in GitHub Desktop.
Save grappler/9267682 to your computer and use it in GitHub Desktop.
<?php
public function enqueue_scripts() {
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_script( $this->plugin_slug . '-plugin-script', plugins_url( 'assets/js/public' . $suffix . '.js', __FILE__ ), array( 'jquery' ), self::VERSION );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment