Replace the Post Excerpt Meta Box with a Field in My Custom Meta Box

Just name the field ‘excerpt’.

E.g.:

<textarea name="excerpt" id="excerpt"><?php echo esc_html( '$post->post_excerpt' ); ?></textarea> <!-- if it is a textarea field -->

or

<input name="excerpt" id="excerpt" value="<?php echo esc_attr( '$post->post_excerpt' ); ?>" /> <!-- if it is a text field -->

Leave a Comment