当使用此代码不起作用时
wp_enqueue_script(
\'et_monarch-custom-js\',
ET_MONARCH_PLUGIN_URI . \'/js/custom.js\',
array( \'jquery\' ),
$this->plugin_version,
true
);
但这个有效
wp_enqueue_script(
\'et_monarch-custom-js\',
ET_MONARCH_PLUGIN_URI . \'/js/custom.js\',
array(),
$this->plugin_version,
true
);