繁体   English   中英

Wordpress wp_enqueue_script 函数不起作用,javascript 文件未加载

[英]Wordpress wp_enqueue_script function not working, javascript file not loading

我正在尝试在 WordPress 中加载一个 js 文件。 请注意,js文件是在主题的根目录,是functions.php ,这里是代码functions.php

function add_theme_scripts() {
wp_enqueue_script( 'script',get_template_directory_uri() . '/script.js', array (), false, true);
}

add_action( 'wp_enqueue_scripts', 'add_theme_scripts' );

这是行不通的。 我错过了什么吗?

解决方法是在index.php中调用wp_head()

由 dreygur 解决

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM