注册后,您必须使用wp_enqueue_script(\'caroufredsel\')
或使用以下代码
function my_load_caroufredsel() {
// Enqueue carouFredSel, note that we specify \'jquery\' as a dependency, and we set \'true\' for loading in the footer:
wp_enqueue_script( \'caroufredsel\', get_template_directory_uri() . \'/js/jquery.carouFredSel-6.1.0-packed.js\', array( \'jquery\' ), \'6.1.0\', true );
// For either a plugin or a theme, you can then enqueue the script:
wp_enqueue_script( \'my-caroufredsel\', get_template_directory_uri() . \'/js/my-caroufredsel.js\', array( \'caroufredsel\' ), \'\', true );
}
add_action( \'wp_enqueue_scripts\', \'my_load_caroufredsel\' );
在此之前,您必须检查标题。php和页脚。php,因为在标题中。php您已经检查了wp\\u head()代码和页脚。php您必须检查wp\\u footer()。没有上面的钩子代码就不起作用。