如何仅将自定义js文件引用到Woocommerce编辑/添加产品页面?
谢谢。
Ciao
答案 0 :(得分:0)
这对我有用(将添加到主题的functions.php文件中):
//wholesale-prices
function add_admin_scripts( $hook ) {
global $post;
if ( $hook == 'post-new.php' || $hook == 'post.php' ) {
if ( 'product' === $post->post_type ) {
wp_enqueue_script( 'myscript', get_stylesheet_directory_uri().'/js/wholesale-prices.js' );
}
}
}
add_action( 'admin_enqueue_scripts', 'add_admin_scripts', 10, 1 );