您可以在标题中阅读,我的js脚本不会在我的wordpress网站上运行。但是,当输入wordpress定制程序时,脚本可以正常工作。
我认为问题可能出在jQuery。所以我试图将jQuery加载到header.php
function insert_jquery(){
wp_enqueue_script('jquery', false, array(), false, false);
}
add_filter('wp_enqueue_scripts','insert_jquery',1);
这是我在funtions.php中将代码实现到网站中的方式:
wp_enqueue_script('imagefade', '/additional-content/imagefade.js', array('jquery'), null, true);
但这没有帮助。
有人遇到过类似的问题吗?