I've added the following code to functions.php of my activated child theme:
function fullpagejs() { $slimscroll = get_stylesheet_directory_uri() . '/library/fullPage.js-master/vendors/jquery.slimscroll.min.js' ; wp_register_script('fullpage-slimscroll', $slimscroll, false, null); //some more files will be added here later } add_action("wp_enqueue_scripts", "fullpagejs"); However when I check the page source, I can't find the script jquery.slimscroll.min.js registered.