出于某种原因,我登录WordPress时似乎只加载了我的jQuery脚本。这是页面: http://www.mcfaddengavender.net/newmg/
正如您所看到的,图像并非“滑动”。但是,如果我登录并返回主页,则一切正常。这是我用来在Functions.php中运行jQuery的代码:
//jQuery - Use Google CDN instead of WP jQuery
function my_scripts_method() {
if (!is_admin()) {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js');
wp_enqueue_script( 'jquery' );
}
}
add_action('init', 'my_scripts_method');
?>
关于会导致如此奇怪问题的任何想法?
答案 0 :(得分:0)
你在错误的地方使用
add_action('wp_enqueue_scripts', 'my_scripts_method');
而不是'init'