WordPress默认的jQuery 库是在header载入的,下面的代码可以改变jQuery 库的载入位置。

你只需将下面的代码加入到functions.php 中即可。

<?php
/**
 * Prints jQuery in footer on front-end.
 */
function ds_print_jquery_in_footer( &$scripts) {
 if ( ! is_admin() )
 $scripts->add_data( 'jquery', 'group', 1 );
}
add_action( 'wp_default_scripts', 'ds_print_jquery_in_footer' );
Last modification:April 11th, 2020 at 09:18 pm
如果觉得我的文章对你有用,请随意赞赏