我正在尝试将javascript文件添加到我的WordPress网站,但该文件无法加载。这是我的functions.php文件中的代码。
function add_custom_script() {
wp_register_script('custom_scripts', get_template_directory_uri().'custom.js', array(),'', true);
wp_enqueue_script('custom_scripts');
}
add_action( 'wp_enqueue_scripts', 'add_custom_script' );
谢谢
答案 0 :(得分:0)
你只需使用wp_enqueue_script()
,而Mithc说get_template_directory_uri()
不会添加尾部斜杠。
尝试使用:
function add_custom_script() {
wp_enqueue_script('custom_scripts', get_template_directory_uri().'/custom.js', array(),'', true);
}
add_action( 'wp_enqueue_scripts', 'add_custom_script' );