Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save Tsunamijaan/d9c989296f34cf3adf2f4a6b8e73d037 to your computer and use it in GitHub Desktop.

Select an option

Save Tsunamijaan/d9c989296f34cf3adf2f4a6b8e73d037 to your computer and use it in GitHub Desktop.
Load jQuery and dependent JS libraries from function.php
<?php
wp_enqueue_script('jquery');
if (!function_exists('load_theme_scripts')) {
function load_theme_scripts(){
wp_enqueue_script( 'custom-script', get_template_directory_uri() . '/js/custom.js', array('jquery'), '1.0.0', true );
}
add_action("wp_enqueue_scripts", "load_theme_scripts");
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment