How to add an excerpt to pages and custom post types in WordPress

Share
Is an excerpt not showing for pages?
Excerpts are not supported by default for pages (it’s only a default feature for posts). You will not find excerpts under ‘screen options’ – you have to add support with code. To add support simply add the snippet below to your functions.php file.
add_action('after_setup_theme', function () {
add_post_type_support('page', 'excerpt');
});
Add support for custom post types
When registering a custom post type, you can add the option to have excerpts with the ‘supports’ parameter. But if you want to add excerpt support for an existing custom post type and you don’t have access to the register script, use the same function as above but replacing ‘page’ with the slug name of your custom post type.
add_action('after_setup_theme', function () {
add_post_type_support('your-custom-post-type', 'excerpt');
});
Read more tutorials
Form Builders Haven’t Evolved — WP AI Forms Might Be the Exception
An honest review of WP AI Forms from a Gutenberg-first perspective. How conversational AI changes the way forms and actions are built in WordPress.
Continue Reading Form Builders Haven’t Evolved — WP AI Forms Might Be the Exception
Gutenberg vs. Page Builders in WordPress (2025): Who’s Using What?
Gutenberg is now the most common editor in WordPress and still growing. Roughly two in five WP sites run third-party page builders (Elementor, WPBakery, etc.). This article breaks down the split, how it’s changing, and clear guidance on when to choose Gutenberg vs a builder.
Continue Reading Gutenberg vs. Page Builders in WordPress (2025): Who’s Using What?
How to Add Your Company’s LinkedIn Feed to Your WordPress Website
Learn how to add your company’s LinkedIn feed to WordPress — with step-by-step instructions for manual embeds and the ProFeedWP plugin.
Continue Reading How to Add Your Company’s LinkedIn Feed to Your WordPress Website


