Tôi muốn xóa jQuery mặc định, vì tôi đang thêm jQuery mới hoặc mới nhất. Ngoài ra tôi muốn bao gồm một số js trong footer của tôi. Làm thế nào tôi có thể làm điều đó?
Tôi muốn thêm một js khác như js trượt hoặc css trong chân trang của tôi.
Tôi muốn xóa jQuery mặc định, vì tôi đang thêm jQuery mới hoặc mới nhất. Ngoài ra tôi muốn bao gồm một số js trong footer của tôi. Làm thế nào tôi có thể làm điều đó?
Tôi muốn thêm một js khác như js trượt hoặc css trong chân trang của tôi.
Câu trả lời:
Điều này sẽ thực hiện thủ thuật khi thêm vào tệp chức năng của bạn:
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js", false, null);
wp_enqueue_script('jquery');
}
Tôi đang tìm kiếm tôi nhận được một blog ở đây tôi nhận được hai mã khác nhau. một cho
Ở đây tôi cùng mã cho bên dưới
<?php
function myphpinformation_scripts() {
if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', get_stylesheet_directory_uri() . '/js/jquery.min.js', false);
wp_enqueue_script('jquery');
}
}
add_action( 'wp_enqueue_scripts', 'myphpinformation_scripts' );
?>
Ở đây tôi biết làm thế nào để thêm js trong wordpress trong footer. Tôi nghĩ loại bỏ jquery mặc định và thêm js trong footer trong wordpress là câu hỏi khác nhau.
Ở đây tôi có thể tìm thấy rằng
<?php
function myphpinformation_scripts() {
wp_enqueue_script( 'scroll', get_stylesheet_directory_uri() . '/js/script.js',array('jquery'),'',true);
}
add_action( 'wp_enqueue_scripts', 'myphpinformation_scripts' );
?>
Xóa jQuery mặc định của jQuery khỏi giao diện người dùng
Chúng ta có thể xóa jQuery wordpress mặc định khỏi frontend để tránh xung đột với jQuery trong chủ đề. Để xóa jQuery mặc định, hãy thêm đoạn mã sau vào tệp function.php trong thư mục chủ đề.
add_action ('wp_enqueue_scripts', 'no_more_jquery'); hàm no_more_jquery () { wp_deregister_script ('jquery'); }