我想在function.php中添加我的所有主题JavaScript文件,我的脚本是
<script src="http://localhost/xampp/website/nextgen/wp-content/themes/nextgen/nextgen/js/jquery.min.js"></script>
我如何将这些添加到我的functions.php我已经尝试了几个教程,但它对我不起作用。
使用上面的代码显示演示
答案 0 :(得分:0)
将它放在functions.php文件中:
function addthemejs() {
wp_enqueue_script( 'myscript', 'http://localhost/xampp/website/nextgen/wp-content/themes/nextgen/nextgen/js/jquery.min.js' , array(), "", false ); );
}
add_action( 'wp_enqueue_scripts' , 'addthemejs' );
我已经硬编码了你的代码,你必须知道这不是那么好的解决方案,但是如果你只是测试它就可以了,我猜