Enabling Excerpt for ‘Pages’

Add the Excerpt `post_excerpt` to the Default WordPress Page.

By default the WordPress ‘Page’ doesn’t show the Excerpt. If you’d like to enable this you can do so by adding the following line to your functions.php:

 

add_post_type_support( 'page', 'excerpt' );

Questions