0

出于某种原因,我的 jQuery 脚本似乎只在我登录 WordPress 时才加载。这是页面: 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');
?>

关于什么会导致这样一个奇怪的问题的任何想法?

4

1 回答 1

0

你在错误的地方使用

add_action('wp_enqueue_scripts', 'my_scripts_method'); 

而不是“初始化”

于 2012-12-05T06:27:45.337 回答