并不是所有的脚本都在排队

时间:2018-11-16 作者:Toni Michel Caubet

从两个脚本中,仅“自定义”。js’已加载,不常见。js公司

这是我的职责。php文件:

<?php
function custom_scripts () {
    if (!is_admin()) {
        wp_deregister_script(\'jquery\');


        wp_enqueue_script(\'common\', get_bloginfo(\'template_directory\') . \'/js/common.js\', array(), \'1.0\', true );
        wp_enqueue_script(\'custom\', get_bloginfo(\'template_directory\') . \'/js/custom.js\', array(), \'1.0.1\', true );

        wp_enqueue_script(\'common\');
        wp_enqueue_script(\'custom\');
    }
}

add_action("wp_enqueue_scripts", "custom_scripts");
?>
知道为什么吗?

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

请尝试更改处理程序common 名称

结束

相关推荐