How to Enable page excerpts

Placing this php code within the wordpress functions.php file in your theme will enable excerpts for pages.
( click code to copy )wordpress snippet : PHP
<>
function page_excerpt() { add_post_type_support('page', array('excerpt')); } add_action('init', 'page_excerpt');
( WordPress codex functions, hooks, in this snippet. )
init, add_post_type_support, add_action, _e, _ex,