Add code to file functions.php
- Code add theme support
/**
* Enables the Excerpt meta box in Page edit screen.
*/
function wpcodex_add_excerpt_support_for_pages() {
add_post_type_support( 'page', 'excerpt' );
}
add_action( 'init', 'wpcodex_add_excerpt_support_for_pages' );
2. Code remove
function my_custom_init() {
remove_post_type_support( 'post', 'excerpt' );
}
add_action( 'init', 'my_custom_init' );
