我有一个我非常喜欢的旧jQuery插件,它在基本的HTML网页中运行良好,但当我尝试将其带入可能使用较新版本的jQuery的WordPress页面时效果不佳。
特别是,我的WordPress站点(版本3.7.1)正在使用更新的jQuery库,而插件基于更早的jquery-1.6.2.js库。
在我网站的functions.php文件中,我尝试使用以下代码来实现
<head>
部分:function test_enqueue_css() {
wp_enqueue_style( 'jquery.popeye', get_template_directory_uri() . '/jquery.popeye.css',false,'1.1','all');
wp_enqueue_style( 'jquery.popeye.style', get_template_directory_uri() . '/jquery.popeye.style.css',false,'1.1','all');
}
add_action( 'wp_enqueue_scripts', 'test_enqueue_css' );
function get_jquery_library() {
wp_enqueue_script( 'jquery-1.6.2', get_template_directory_uri() . '/jquery-1.6.2.js',false,'1.1','all');
}
add_action( 'wp_enqueue_scripts', 'get_jquery_library', 1);
function test_enqueue_script() {
wp_enqueue_script( 'jquery.popeye-2.1', get_template_directory_uri() . '/jquery.popeye-2.1.js',false,'1.1','all');
}
add_action( 'wp_enqueue_scripts', 'test_enqueue_script' );
css运行良好,但JS没有。任何人都可以建议我将一个早期版本的jQuery加载到具有更新版本jQuery的网站上吗?
非常感谢任何帮助!