Add Excerpt Support to Pages
Enables the Excerpt meta box on Pages so editors can write custom page descriptions used by themes and SEO plugins.
PHPby SnipCraft
php
<?php
add_action( 'init', 'scseed_add_excerpt_to_pages' );
if ( ! function_exists( 'scseed_add_excerpt_to_pages' ) ) {
function scseed_add_excerpt_to_pages() {
add_post_type_support( 'page', 'excerpt' );
}
}#admin#cpt#excerpt#pages