Owl carousel js在我的子主题脚本加载后加载,Owl。旋转木马min.js位于wp content文件夹中的插件目录中。我怎么做猫头鹰。旋转木马在我的自定义脚本出现在子主题中之前加载min.js,下面是我在函数中编写的代码。php
add_action( \'wp_enqueue_scripts\', \'custom_script\' , 120);
function custom_script() {
wp_enqueue_script(\'jquery\');
wp_enqueue_script( \'ultrabootstrap-bootstrap\', get_template_directory_uri() . \'/js/bootstrap.js\', array(), \'1.0.0\', true );
wp_enqueue_script( \'ultrabootstrap-scripts\', get_template_directory_uri() . \'/js/script.js\', array(), \'1.0.0\', true );
wp_enqueue_script(
\'custom-script\',
get_stylesheet_directory_uri() . \'/custom-script.js\',
array(\'jquery\',\'ultrabootstrap-bootstrap\',\'ultrabootstrap-scripts\')
);
};