Skip to content

Instantly share code, notes, and snippets.

@thecodepoetry
Created March 31, 2015 12:43
Show Gist options
  • Save thecodepoetry/3bfb8ad46a7a1e40527f to your computer and use it in GitHub Desktop.
Save thecodepoetry/3bfb8ad46a7a1e40527f to your computer and use it in GitHub Desktop.
Load main.js from child theme
function custom_enq_childminjs() {
wp_dequeue_script( 'dt-main', get_template_directory_uri() . '/js/main.js', array( 'jquery' ), false, true );
wp_register_script('dt-main', get_stylesheet_directory_uri() . '/js/main.js', array('jquery'),false, true);
wp_enqueue_script('dt-main');
}
add_action( 'wp_enqueue_scripts', 'custom_enq_childminjs' );
@thecodepoetry
Copy link
Author

Code goes in child theme functions.php

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment