Try with this code, //Metabox Hook add_action(‘add_meta_boxes’,’stars_meta_box’); //Metabox Init function stars_meta_box(){ add_meta_box(‘first_name_meta_box’, ‘First Name’,’first_name_meta_box_html’,’spark_stars’,’normal’,’default’);); } //Metabox Html function first_name_meta_box_html($post){ wp_nonce_field(‘first_name’,’first_name_meta_box_nonce’); $value = get_post_meta( $post->ID, ‘first_name_meta_box_key’, true ); echo ‘<label>First Name: </label> <input type=”text” name=”fname” value=”‘ . esc_attr($value) . ‘”/>’; } //Save Hook add_action( ‘save_post’, ‘my_save_meta_box’ ); //Save Metabox Value function my_save_meta_box($post_id){ //you might want this … Read more