gpt4 book ai didi

wordpress - wp_enqueue_script() 不加载多个脚本

转载 作者:行者123 更新时间:2023-12-03 06:54:47 25 4
gpt4 key购买 nike

我正在尝试通过 wp_enqueue_script() 加载两个脚本。我做了功能,但只有第一个加载而不是第二个。这是代码:

//Load my own jQuery
function fix_noconflict() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery' , 'http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js' );}

add_action( 'wp_enqueue_scripts' , 'fix_noconflict' );

//This two functions follow the same
function mauricio_bootstrap_script_jquery() {

//Includes bootstrap jQuery
wp_register_script( 'custom-script', get_template_directory_uri().'/mauricio_bootstrap/js/bootstrap.js', array( 'jquery' ) );

//This enqueus the script

wp_enqueue_script( 'custom-script' );
}
// Adds the new bootstrap function to the wp_enqueue_scripts
add_action( 'wp_enqueue_scripts', 'mauricio_bootstrap_script_jquery' );

function mauricio_bootstrap_script_carousel() {

wp_register_script( 'myscript', get_template_directory_uri().'/mauricio_bootstrap/js/bootstrap-carousel.js', array( 'jquery' ) );


wp_enqueue_script( 'myscript' );
}

add_action( 'wp_enqueue_script', 'mauricio_bootstrap_script_carousel' );

仅供记录,我的标题中有 wp_head() 。正如我所说,它加载了第一个包含 bootstrap.js 的函数。

谢谢

中号

最佳答案

为什么不尝试将所有函数放在一个主函数中,就像这样?

function wpEnqueueScripts(){
// Adds the new bootstrap function to the wp_enqueue_scripts
wp_register_script('custom-script', get_template_directory_uri() . '/mauricio_bootstrap/js/bootstrap.js', array('jquery'));
wp_enqueue_script('custom-script');

// Adds the new bootstrap function to the wp_enqueue_scripts
wp_register_script('myscript', get_template_directory_uri() . '/mauricio_bootstrap/js/bootstrap-carousel.js', array('jquery'));
wp_enqueue_script('myscript');
}

add_action('wp_enqueue_scripts', 'wpEnqueueScripts');

关于wordpress - wp_enqueue_script() 不加载多个脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17171249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com