X

Function to enable page excerpts on wordpress site

Add following code to function.php in your theme folder to enable excerpts for pages.

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