https://github.com/320press/wordpress-bootstrap
如何将custom.js添加到此主题?我不是很擅长gruntjs。我们说它的路径是library/js/custom.js
这是gruntfile:https://github.com/320press/wordpress-bootstrap/blob/master/Gruntfile.js
谢谢!
答案 0 :(得分:0)
为什么不使用enqueue
将脚本嵌入到主题中。在function.php
文件中创建一个函数
/**
*Enqueue styles.
*/
function add_scripts() {
wp_register_script( 'customScript', get_template_directory_uri() . 'library/js/custom.js', array(), '1.0.0', true );
// here it is just example of path. you can use yours.
wp_enqueue_script( 'customScript' );
}
add_action( 'wp_enqueue_scripts', 'add_scripts' );