Skip to content

Instantly share code, notes, and snippets.

@rajeebbanstola
Created October 6, 2015 09:06
Show Gist options
  • Save rajeebbanstola/af164367a0738f6721e9 to your computer and use it in GitHub Desktop.
Save rajeebbanstola/af164367a0738f6721e9 to your computer and use it in GitHub Desktop.
<?php
add_action( 'wp_enqueue_scripts', 'colormag_scripts_styles_method' );
/**
* Enqueues styles and scripts.
*/
function colormag_scripts_styles_method() {
$suffix = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min';
wp_enqueue_script( 'colormag-bxslider', COLORMAG_JS_URL . '/jquery.bxslider' . $suffix . '.js', array( 'jquery' ), '4.1.2', true );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment