将自定义JavaScript添加到Woocommerce编辑产品页面

时间:2018-11-13 11:49:17

标签: woocommerce

如何仅将自定义js文件引用到Woocommerce编辑/添加产品页面?

谢谢。

Ciao

1 个答案:

答案 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 );