WordPress has two default post types called Post and Page. Posts are displayed in reverse chronological order from latest to oldest on your blog page or home page. Each time you publish the post it will appear on the blog page. If you want to change the order of the published post, you can simply change the post’s published date.
On the other hand, pages are stand-alone content especially used for About Us, Contact, and Information pages. Pages are not repeated like the post and each page has its own content and use.
In this blog post, I am only going to share how to enable the excerpt field on the page/post via Screen Options.
In WordPress page and post dashboard have different fields. Among them, the Excerpt field is one of the most useful fields for WordPress users. If the excerpt field is not enabled/visible on the page and post dashboard, you need to enable it via Screen Options. Some themes may lack to create this field on Page. In such a case, you need to write some code to enable this feature. Copy and paste the below code in your theme functions.php file to enable the excerpt filed on page Screen Option.
// Adding excerpt for page add_post_type_support( 'page', 'excerpt' );
Before Adding this Code:
After Adding this Code:
In the case of the post, you can just go to Screen Options and Enable the Excerpt to show the excerpt field on the post.
Last updated for 2026. This article is reviewed annually to keep the information accurate and current. For the most up-to-date WordPress guidance, bookmark this page or subscribe to our newsletter.
Wrapping Up
This guide covered the essentials of Enable Excerpt field on Post Page of WordPress. For ongoing coverage and the latest enable excerpt field on post page of wordpress tips, subscribe to the Acme Themes newsletter or follow us on social media. Have a specific question about enable excerpt field on post page of wordpress? Drop a comment below — our team reads and responds to every query within 48 hours.
Last updated: June 2026. Reviewed for accuracy against WordPress 6.5+ core.

