How to add Excerpt Section for page in WordPress?

Add these block of code in your theme’s functions.php


add_action('init', 'add_excerpt_pages');
function add_excerpt_pages() {
add_post_type_support( 'page', 'excerpt' );
}

More Articles & Posts