我正在尝试使用wordpress的functions.php部分使脚本入队。
当我像这样使脚本入队
wp_enqueue_script( 'my-great-script', get_template_directory_uri() . 'js/findrep.js', array( 'jquery' ), '1.0.0', true );
我可以看到它在源代码中添加了脚本,但是该路径是错误的。路径应该为/js/findrep.js
,但是当我添加第一个正斜杠时,它不再起作用,并且根本没有在页面上添加脚本。即使我将完整的url添加为源,也无法正确添加。似乎只能使用错误的路径,显然这不允许我使用该脚本。
为什么会这样?
这是完整的入队功能
function my_theme_scripts() {
wp_enqueue_script( 'my-great-script', get_template_directory_uri() . 'js/findrep.js', array( 'jquery' ), '1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );