您应该将脚本放入子主题函数中。php。例如,如果js文件的名称是custom。如果你把它放在子主题的js文件夹下,那么就放在函数中。应添加的php
function my_custom_scripts() {
wp_enqueue_script( \'custom-js\', get_stylesheet_directory_uri() . \'/js/custom.js\', array( \'jquery\' ),\'\',true );
}
add_action( \'wp_enqueue_scripts\', \'my_custom_scripts\' );
在这里
get_stylesheet_directory_uri()
将返回子主题的目录,然后
array( \'jquery\' )
将在jquery之后加载js,如果脚本需要js,则应使用此选项,否则可以删除或在此处添加依赖脚本,最后一个参数为true,即在页脚加载js。