gpt4 book ai didi

Wordpress 3.4 注销 jQuery

转载 作者:行者123 更新时间:2023-12-02 22:35:55 25 4
gpt4 key购买 nike

将 WP 从 3.3 升级到 3.4 后 wp_deregister_script('jquery');似乎不再有效(WP 提供的 jQuery 在部分中可见)。

注销脚本包含在我的主题的 functions.php 文件中,如下所示:

    if( !is_admin()){
wp_deregister_script('jquery');
}

升级后,我试图对此进行自定义,但实际上没有任何效果。例如,我也尝试过将脚本出队,但还是不行。

if( !is_admin()){
wp_deregister_script('jquery');
wp_dequeue_script('jquery');

}

期待您的意见和任何可能的解决方案。

最佳答案

使用 hook 来做到这一点

add_action( 'admin_enqueue_scripts', 'my_enque_func' );
function my_enque_func()
{
wp_deregister_script('jquery');
wp_register_script(...); // Register your own script
}

关于wp_register_script .

关于Wordpress 3.4 注销 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11448847/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com