我可以问一下如何在wordpress中多次请求脚本。例如:
for($i = 0; $i < 2 ; $i++){
wp_enqueue_script('alerthello.js', 'example.com/example.js');
}
我希望代码显示两个hello,但它只显示一个。
答案 0 :(得分:0)
因为脚本名称相同,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