I have added a few meta boxes for the posts and pages, so I want to load a js script only on the Create/Edit post and page. How can I do that?
Currently I’m using following but that loads the scripts in all pages in the admin.
function my_meta_boxes() {
add_meta_box("post_meta", "Meta", "post_meta", "post", "normal", "high");
add_meta_box("post_meta", "Meta", "post_meta", "page", "normal", "high");
}
add_action( 'add_meta_boxes', 'my_meta_boxes' );
function register_custom_scripts() {
wp_enqueue_script( 'custom_js', get_template_directory_uri() . '/inc/meta/custom.js', array( 'jquery' ));
wp_enqueue_style( 'custom_css', get_template_directory_uri() . '/inc/meta/custom.css');
}
add_action( 'admin_init', 'register_custom_scripts' );
We can improve a little bit with :
Use admin_enqueue_scripts hook to enqueue scripts to the admin pages and to make it to specific page follow the below:–
Hope it helps!!
I have another approach which requires less code. As you are adding the scripts to work with metaboxes, you can equeue the scripts in the
add_meta_boxes()
action hook. It works perfectly and you don’t need to check the actual page in every request for the admin area.