<?php
function my_cpt_enqueue( $hook_suffix ){
$cpt = 'my-post-type'; // тут измените на свой custom post type
if( in_array( $hook_suffix, array( 'post.php', 'post-new.php' ) ) ) {
$screen = get_current_screen();
if( is_object( $screen ) && $cpt == $screen->post_type ){
// тут подгружаете скрипт
}
}
}
add_action( 'admin_enqueue_scripts', 'my_cpt_enqueue');