jQuery Migrate là các tập tin JavaScript được tích hợp kể từ phiên bản WordPress 3.6 để hỗ trợ cho những giao diện sử dụng các phiên bản cũ hơn của jQuery.
Loại bỏ jQuery Migrate
Bạn thêm đoạn mã sau vào functions.php.
/*
* Remove JQuery migrate
*/
function remove_jquery_migrate( $scripts ) {
if ( ! is_admin() && isset( $scripts->registered['jquery'] ) ) {
$script = $scripts->registered['jquery'];
if ( $script->deps ) {
$script->deps = array_diff( $script->deps, array( 'jquery-migrate' ) );
}
}
}
add_action( 'wp_default_scripts', 'remove_jquery_migrate' );
Chúc các bạn thành công!
Bình luận