@Yuna: That will be bit difficult and I guess, you might need to hide developer to work on it. You need to use add_meta_box() function in your child theme functions.php file to add in. For example see the below code
// Add the Meta Box
function adventurous_child_add_custom_box() {
add_meta_box(
'adventurous-options', //Unique ID
__( 'Adventurous Options', 'adventurous' ), //Title
'adventurous_meta_options', //Callback function
'post' //Your post type
);
}
add_action( 'add_meta_boxes', 'adventurous_child_add_custom_box' );