Wordpress - Theme Structure and Basics
What will happen if you run this code in your theme's
functions.php?
function load_custom_scripts() {
wp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js', array('jquery'), '1.0', true);
}
add_action('wp_enqueue_scripts', 'load_custom_scripts');