Wordpress - Theme Structure and Basics
Identify the error in this code snippet:
function add_scripts() {
wp_enqueue_script('custom-js', get_template_directory_uri() . '/js/custom.js');
}
add_action('init', 'add_scripts');