08 Apr Add excerpt to pages in WordPress
// Goes in functions.php file. Add excerpt to pages.
add_action( 'init', 'custom_add_excerpts_to_pages' );
function custom_add_excerpts_to_pages() {
add_post_type_support( 'page', 'excerpt' );
}
// Goes in functions.php file. Add excerpt to pages.
add_action( 'init', 'custom_add_excerpts_to_pages' );
function custom_add_excerpts_to_pages() {
add_post_type_support( 'page', 'excerpt' );
}