我可以问我如何在 wordpress 中多次请求脚本。例如:
for($i = 0; $i < 2 ; $i++){
wp_enqueue_script('alerthello.js', 'example.com/example.js');
}
我希望代码显示两个你好,但它只显示一个。
我可以问我如何在 wordpress 中多次请求脚本。例如:
for($i = 0; $i < 2 ; $i++){
wp_enqueue_script('alerthello.js', 'example.com/example.js');
}
我希望代码显示两个你好,但它只显示一个。
因为脚本名称相同,所以 WordPress 只会添加该脚本一次。该wp_enqueue_script
函数只是将脚本添加到队列中,如果有两个相同的脚本,它只会吐出一个。
我不知道你为什么要多次添加相同的脚本,但你可以试试这个。
for($i = 0; $i < 2 ; $i++){
wp_enqueue_script('alerthello.js'.$i, 'example.com/example.js');
}
您也可以查看 wp_print_scripts() http://codex.wordpress.org/Plugin_API/Action_Reference/wp_print_scripts