正如我在标题中提到的,我的 js 文件遇到了一些问题。
我已经测试了 HTML 模板中的脚本并且工作正常,但是当我将它们放入文件中时,functions.php有些脚本无法正常工作。
这里是functions.php文件:
<?php
function load_stylesheets(){
/************/
}
function add_js(){
wp_register_script('jquery-min', get_template_directory_uri().'/js/jquery.min.js', array('jquery'), 2, true);
wp_enqueue_script('jquery-min');
wp_register_script('jquery-migrate', get_template_directory_uri().'/js/jquery/jquery-migrate.min.js', array('jquery'), 2, true);
wp_enqueue_script('jquery-migrate');
wp_register_script('popper', get_template_directory_uri().'/js/popper/popper.min.js', array('jquery'), 2, true);
wp_enqueue_script('popper');
wp_register_script('bootstrap', get_template_directory_uri().'/js/bootstrap/js/bootstrap.min.js', array('jquery'), 2, true);
wp_enqueue_script('bootstrap');
wp_register_script('easing', get_template_directory_uri().'/js/easing/easing.min.js', array('jquery'), 2, true);
wp_enqueue_script('easing');
wp_register_script('jquery.waypoints', get_template_directory_uri().'/js/counterup/jquery.waypoints.min.js', array('jquery'), 2, true);
wp_enqueue_script('jquery.waypoints');
wp_register_script('jquery.counterup', get_template_directory_uri().'/js/counterup/jquery.counterup.js', array('jquery'), 2, true);
wp_enqueue_script('jquery.counterup');
wp_register_script('carousel', get_template_directory_uri().'/js/owlcarousel/owl.carousel.min.js', array('jquery'), 2, true);
wp_enqueue_script('carousel');
wp_register_script('lightbox', get_template_directory_uri().'/js/lightbox/js/lightbox.min.js', array('jquery'), 2, true);
wp_enqueue_script('lightbox');
}
add_action("wp_enqueue_scripts", "load_stylesheets", "add_js", 999);
?>
函数式编程
相关分类