无法将自定义js文件添加到wpbootstrap

时间:2015-06-11 03:05:01

标签: wordpress twitter-bootstrap gruntjs

https://github.com/320press/wordpress-bootstrap

如何将custom.js添加到此主题?我不是很擅长gruntjs。我们说它的路径是library/js/custom.js

这是gruntfile:https://github.com/320press/wordpress-bootstrap/blob/master/Gruntfile.js

谢谢!

1 个答案:

答案 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' );