替换jQuery的WordPress版本通常是个坏主意。签出Pippin的文章Why Loading Your Own jQuery is Irresponsible 了解更多信息。
您可以将提供的版本移到页脚,而不是完全替换jQuery。然而,您需要注意的是,如果插件在网站标题中加载脚本,那么这很可能会破坏插件。
function themename_print_jquery_in_footer( &$scripts ) {
// Return if the website is being requested via the admin or theme customizer
global $wp_customize;
if ( is_admin() || isset( $wp_customize ) ) {
return;
}
$scripts->add_data( \'jquery-core\', \'group\', 1 );
$scripts->add_data( \'jquery-migrate\', \'group\', 1 );
}
add_action( \'wp_default_scripts\', \'themename_print_jquery_in_footer\' );