我需要将jQuery库添加到WordPress页面。该页面由插件短代码呈现。
我已经使用了以下方法,但我认为它对我的jQuery脚本不起作用。
我试图在插件名称和版本所在的主插件文件中添加以下脚本。
设计不起作用:
function my_init() {
if (!is_admin()) {
wp_enqueue_script(\'jquery\');
}
}
add_action(\'init\', \'my_init\');
设计不起作用
function my_init() {
if (!is_admin()) {
// comment out the next two lines to load the local copy of jQuery
wp_deregister_script(\'jquery\');
wp_register_script(\'jquery\', \'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js\', false, \'1.4.2\');
wp_enqueue_script(\'jquery\');
}
}
add_action(\'init\', \'my_init\');
我真的需要将下面的库添加到我的WordPress前端页?
http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
但如果我像下面那样直接使用它,它就会工作。
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
其次,如何在我的浏览器中看到它与其他代码一起加载?