我仍在开发网站http://verocoffee1.wpengine.com/shop/carimali-bubble/,我使用jquery做了一些更改,他们都在页脚,我知道这不是正确的方法。所以我将所有文件复制到一个名为veroscript.js的文件中,并将其插入到function.php
中function sd_scripts_enqueue() {
wp_register_script(
'veroscript'
, get_stylesheet_directory_uri() . '/js/veroscript.js'
, array(
'jquery'
)
, '0'
, true
);
wp_enqueue_script('veroscript');
}
add_action('wp_enqueue_scripts', 'sd_scripts_enqueue', 99999);
然而,之后应该影响woocommerce的所有代码都不再起作用了。 我应该为woocommerce做些不同的事情吗?