Skip to content

Instantly share code, notes, and snippets.

@omniacode
Last active November 11, 2016 16:34
Show Gist options
  • Save omniacode/060e43fa3a0d9b919c657e3ab7bff605 to your computer and use it in GitHub Desktop.
Save omniacode/060e43fa3a0d9b919c657e3ab7bff605 to your computer and use it in GitHub Desktop.
WP Child Theme Specific JS
// Load Child Theme Specific JS
function load_child_js_files() {
wp_register_script('filename', get_stylesheet_directory_uri() . '/js/filename.js', array('jquery'), '', true);
wp_enqueue_script('filename');
}
add_action('wp_enqueue_scripts', 'load_child_js_files', 99);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment