如何在WordPress中从页脚中删除js文件

时间:2021-02-18 作者:Talha Arif

我想从特定模板中删除特定js文件。我已经看到了一些解决方案,并尝试了它们,但没有结果。接下来,我正在编写我尝试过的代码。

add_action(\'wp_enqueue_scripts\',\'theme_slug_dequeue_footer_jquery\');
function theme_slug_dequeue_footer_jquery() {
   
     if ( is_page_template(\'property_list_half.php\') ) {
       wp_dequeue_script(\'directory-js\');
       wp_deregister_script(\'directory-js\');
     }      
   }

following the image of file i want to remove

1 个回复
最合适的回答,由SO网友:vjstereo 整理而成

试试这个。-js是由WordPress添加的,所以在调用它时不需要它。

function theme_slug_dequeue_footer_jquery() {

    if ( is_page_template(\'property_list_half.php\') ) {
        wp_dequeue_style( \'directory\' );
    }
}
add_action(\'wp_enqueue_scripts\',\'theme_slug_dequeue_footer_jquery\');

相关推荐

页脚中的jQuery 3.5.1出现问题

我的Wordpress安装版本是5.6版和Jquery 3.5.1版。Wordpress Gallery块支持指向媒体图像大文件的链接,但该链接会在相同的窗口中打开图像。我通常使用Fancybox类来<;a>;标记以在弹出窗口中打开大图像(a href=“big image.jpg”class=“fancybox”…)。block gallery不支持类链接,因此我编写了一个JQuery脚本并将其放在页脚中,以将类添加到库的href图像中。脚本启动ad文档。准备好的以下是脚本:jQuery(doc