In WordPress posts have excerpts which can easily be pulled onto other areas of the site. You may come across the need to allow excerpts on pages also. This isn’t turned on by default, but you can easily add support for excerpts on pages by adding the following code to your functions.php file:
add_post_type_support( 'page', 'excerpt' );



