function parent_theme_name_scripts() {
wp_enqueue_script( \'lektor\', get_template_directory_uri() . \'/js/synteza.js\', array(), \'1.0.0\', true );
}
add_action( \'wp_enqueue_scripts\', \'parent_theme_name_scripts\' );
添加到父主题函数文件。
但是,如果要向父主题添加脚本,create a child theme 并使用将脚本添加到子主题函数文件中get_stylesheet_directory_uri()
add_action( \'wp_enqueue_scripts\', \'child_theme_name_scripts\' );
function child_theme_name_scripts() {
wp_enqueue_script( \'lektor\', get_stylesheet_directory_uri() . \'/js/synteza.js\', array(), \'1.0.0\', true );
}
使用
wp_enqueue_scripts
而不是
init
.