1

我已经成功地将 jQuery 链接到 WordPress 中的functions.php. 但是,似乎center.js没有加载。我这样说是因为控制台给了我这个错误:Uncaught TypeError: Object [object Object] has no method 'center'

<?php wp_head(); ?>header.php. 这是我的functions.php

<?php

function add_google_jquery() {
   if ( !is_admin() ) {
      wp_deregister_script('jquery');
      wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"), false);
      wp_enqueue_script('jquery');
   }
}
add_action('wp_print_scripts ', 'add_google_jquery');

// just added jQuery

function add_google_center() {
   if ( !is_admin() ) {
      wp_register_script('center', ("http://jquerydevbrazil.googlecode.com/svn/trunk/jquery.center.js"), false);
      wp_enqueue_script('center');
   }
}
add_action('wp_print_scripts_center ', 'add_google_center');


set_post_thumbnail_size( 800, 600, 1 );

function PA_stylesheet() {
    wp_enqueue_style( 'pa-style', get_stylesheet_uri() );

}

add_action( 'wp_enqueue_scripts', 'PA_stylesheet' );

function PA_javascript() {
    wp_enqueue_script( 'custom-script',
        get_stylesheet_directory_uri() . '/tran.js',
        array( 'jquery' )
    );
}

add_action( 'wp_enqueue_scripts', 'PA_javascript' );

?>

任何人都可以帮助解决这个问题吗?

4

1 回答 1

2

您不应该使用 wp_print_scripts。请改用 wp_enqueue_scripts。

http://codex.wordpress.org/Plugin_API/Action_Reference/wp_print_scripts

(这是为了绑定你的 add_google_jquery 和 add_google_center 函数)

所以,你需要做的就是用'wp_enqueue_scripts'替换'wp_print_scripts',你应该很高兴

于 2013-08-19T16:50:16.617 回答