我一直在努力尝试几个小时,但无济于事。我希望有人能帮助我。
我想要做的是学习如何从我的孩子主题函数中调用javascript函数.php。我读到了使用wp_enqueue_scripts(),并尝试将其付诸实践,但没有成功。我的意思是,没有任何事情发生。没有任何错误消息。
我创建了一个名为" testAlert"的虚拟函数。就像这样:
function testAlert() {
alert("Hello World");
}
并将其保存在/wp-content/themes/mytheme/scripts/testAlert.js中。
在我的functions.php中,我有以下代码:
add_action('wp_enqueue_scripts','testAlert');
function testAlert() {
wp_enqueue_script('testAlert',get_template_directory_uri().'/script/testAlert.js',array());
}
并保存了它。当我回到我的页面并刷新它时,没有任何反应。我希望看到一个带有消息" Hello World"。
的对话框我想知道我做错了什么。
提前谢谢你。