Skip to content

Instantly share code, notes, and snippets.

@shazdeh
Last active December 29, 2015 11:19
Show Gist options
  • Save shazdeh/7663068 to your computer and use it in GitHub Desktop.
Save shazdeh/7663068 to your computer and use it in GitHub Desktop.
Custom theme scripts
<?php
function custom_theme_enqueue_scripts() {
wp_dequeue_script( 'theme-script' );
wp_enqueue_script( 'theme-script', THEME_URI . '/js/themify.custom.script.js', array('jquery'), false, true );
}
add_action( 'wp_enqueue_scripts', 'custom_theme_enqueue_scripts', 12 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment