Not all my scripts are enqueueing

admin2025-06-06  4

From both scripts, only 'custom.js' is loaded, not common.js

this is in my functions.php file:

<?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");
?>

any idea whyy?

From both scripts, only 'custom.js' is loaded, not common.js

this is in my functions.php file:

<?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");
?>

any idea whyy?

Share Improve this question asked Nov 16, 2018 at 12:05 Toni Michel CaubetToni Michel Caubet 6163 gold badges11 silver badges33 bronze badges 6
  • Is it not working? Or not being loaded at all? There's no script tag in the document at all? Also, wp_enqueue_scripts doesn't run in the admin, so ! is_admin() is redundant. – Jacob Peattie Commented Nov 16, 2018 at 12:09
  • 1 Try to change handler (common) name. – Pratik Patel Commented Nov 16, 2018 at 12:12
  • @PratikPatel That worked, didn't know it was a reserved word. is it? – Toni Michel Caubet Commented Nov 16, 2018 at 12:19
  • Yes may be its reserved word so thats why your script not load. – Pratik Patel Commented Nov 16, 2018 at 12:21
  • 1 common is used from WordPress itself. Though I usually advise for deleting questions, I think you should not in this case and let @PratikPatel write up an answer. Feels like this could be important for future visitors (with my comment I wanted to provide the link for where WP uses this) – kero Commented Nov 16, 2018 at 12:38
 |  Show 1 more comment

1 Answer 1

Reset to default 2

Please try to change handler common name.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1749175019a316990.html

最新回复(0)