Home › Forums › Pro Support › How to show own excerpt ? › Reply To: How to show own excerpt ?
July 25, 2016 at 2:59 pm
#234
Participant
I think im ready to give this another try, help me please.
I have the code below to include excerpt metabox, im assuming the excerpt will be saved automatically?
//Enables the Excerpt meta box in volunteer Mgmt edit screen.
function wpcodex_add_excerpt_support_for_volunteer_opp() {
add_post_type_support( 'volunteer_opp', 'excerpt' );
}
add_action( 'init', 'wpcodex_add_excerpt_support_volunteer_opp' );