我只是从这个方法切换了我在主题中排队 jquery 的方式:
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', 'https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js', false, '1.7.2');
wp_enqueue_script('jquery');
}
}
add_action('wp_enqueue_scripts', 'my_init');
对此:
function my_scripts_method() {
wp_enqueue_script('jquery');
}
add_action('wp_enqueue_scripts', 'my_scripts_method');
function my_admin_scripts_method() {
wp_enqueue_script('jquery');
}
add_action('admin_enqueue_scripts', 'my_admin_scripts_method');
老版本使用的是1.7.2,wordpress的内置版本是1.7.1。我尝试将 1.7.1 的地址复制并粘贴到第一个版本中,但它还是一样。该链接在 1.7.1 版本的源代码中,但 jquery 不起作用。有什么想法可能导致这种情况吗?
网址:www.brainbuzzmedia.com/themes/vertex/