Beginner's Guide for WordPress / Start your WordPress Blog in minutes

How to Add Excerpts to Your Pages in WordPress

Do you want to add excerpts to your WordPress pages?

Excerpts are short extracts from your content and help add a description, summary, or small details about the page. By default, excerpts in WordPress are only available for posts.

In this article, we will show you how to add excerpts to your pages in WordPress.

Add excerpts to WordPress pages

Why You May Want to Add Excerpts to Pages in WordPress?

WordPress comes with posts and pages as two default content types. Posts are displayed in reverse chronological order (latest to oldest) on your blog or homepage.

Pages on the other hand are stand-alone content not published in a time-specific order. They are typically used for one-off content like your about us or contact page.

Sometimes you may need to display excerpts for your pages. Especially if you have built a WordPress site using only pages.

Let’s take a look at how to add excerpts to your pages in WordPress and how to display those excerpts on your site.

Adding Excerpts to Pages in WordPress

First, you need to add the following code to your theme’s functions.php file or a site-specific plugin.

add_post_type_support( 'page', 'excerpt' );

This code modifies the default WordPress content type ‘page’ to add support for excerpts. For more details, please see our guide on how to add custom code in WordPress.

After adding the code to your website, you can head over to create a new page or edit an existing page. Once you’re in the WordPress content editor, you’ll be able to see the ‘Excerpt’ meta box in the panel on your right.

See excerpt option in content editor

Now you can use this excerpt meta box to add custom excerpts for your pages on your WordPress blog.

Displaying Excerpts for Pages in WordPress

There are many different ways to display excerpts for your pages in WordPress. Depending on what you are trying to do on your website, you can choose the method that best suits your need.

Method 1: Display Recent Pages With Excerpts Using Shortcode

This method allows you to create your own custom queries and display recent pages using a shortcode.

First, you will need to install and activate the Display Posts Shortcode plugin. For more details, see our step-by-step guide on how to install a WordPress plugin.

Upon activation, you need to edit the post, page, or widget where you want to display recent pages and add the following shortcode.

[display-posts post_type="page" include_excerpt="true" excerpt_more="Continue Reading" excerpt_more_link="true"]

This shortcode will display 10 recent pages with their title, excerpt, and a continue reading link.

If you didn’t enter the custom excerpt for a page, then it will automatically generate the excerpt for the page with the default length of 55 words.

Displaying pages with excerpts

If you are using the shortcode in a sidebar widget, then you may need to enable shortcode support for the text widget. Simply add this code to your theme’s functions.php file.

// Enable shortcodes in text widgets
add_filter('widget_text','do_shortcode');

Method 2: Display Page Excerpts in Sidebar Using Plugin

This method allows you to easily display recent pages and their excerpts in your theme’s sidebar.

First, you need to install and activate the MK Post and Page Excerpts Widgets. For more details, see our step-by-step guide on how to install a WordPress plugin.

Upon activation, you need to visit the Appearance » Widgets page and click the ‘+’ button to add the MK Post and Page Excerpts Widgets block to a sidebar.

Add MK page widget block

After adding the widget block, you can select your page from the dropdown menu under Select Page.

There are also options to edit the title, choose whether to display the page title, content, set content length, featured image, and more.

MK page widget settings

When you’re done, click the ‘Update’ button at the top. You can now visit your website to see the widget in action.

Method 3: Display Page Excerpts Manually

Another way to display page excerpts is by adding the code directly to your theme files. You can create a custom page template and add the following code as a starting point.

$args = array(
'post_type' => array( 'page' ),
'posts_per_page' => 10,
);
// The Query
$the_query = new WP_Query( $args );

// The Loop
if ( $the_query->have_posts() ) {
	while ( $the_query->have_posts() ) {
		$the_query->the_post();
		echo '<h3>'. get_the_title() . '</h3>';
		the_excerpt();
	}
	/* Restore original Post Data */
	wp_reset_postdata();
} else {
	// no posts found
}

You will need to adjust the code to match your theme templates.

We hope this article helped you learn how to add excerpts to your pages in WordPress. You may also want to see our guide on how to choose the best website builder or our expert pick of the best live chat software.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Disclosure: Our content is reader-supported. This means if you click on some of our links, then we may earn a commission. See how WPBeginner is funded, why it matters, and how you can support us. Here's our editorial process.

The Ultimate WordPress Toolkit

Get FREE access to our toolkit - a collection of WordPress related products and resources that every professional should have!

Reader Interactions

39 CommentsLeave a Reply

  1. Hey WPBeginner readers,
    Did you know you can win exciting prizes by commenting on WPBeginner?
    Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
    You can get more details about the contest from here.
    Start sharing your thoughts below to stand a chance to win!

  2. Hi, great tip. Tks a lot! Its possible to use same param to get “tags” in pages?
    add_post_type_support( ‘page’, ‘excerpt’ );
    like:
    add_post_type_support( ‘page’, ‘tags’ );
    its correct? it works?
    Tks!

  3. So, I can’t find the “excerpt” option under “screen options” on the post/page editing page. I added the code to my functions.php file and the option to include the ‘excerpts’ is still not showing up. It’s as if the excerpts function doesn’t even exist on my install of wordpress. I added the following code and nothing changed:
    add_post_type_support( ‘page’, ‘excerpt’ );

    Please help

  4. Thanks so much, it also worked for me, just when I needed it!

    It would also be advisable that you suggest ppl to check Screen Options (as CTGIRL said), ’cause in my case it was hidden there ;)

    Thanks anyway!

  5. Is there a way to add an excerpt to an archive category page like with the code for pages? The following code worked great for pages. Wanting to add it to the category archive too.

    add_post_type_support( ‘page’, ‘excerpt’ );

  6. Thanks for the code .But if i don’t write content in excerpt section , Excerpt is not retrieving from editior .

    • I would use the same code, but change page to events (line 3). If that does not work you need to find your events custom post type name and enter it instead of pages.

  7. The code worked for me. Added it to functions.php, and the Excerpt field became available in Screen options. Thanks so much!

  8. around 15 days ago, same above code work perfectly for me, but now it is not working, what may be the problem, can anyone help me ? above code doesn’t show excerpt place in admin panel for new website that I am developing right now.

  9. That’s amazing! I got a job to change the layout of a website which is running on WP and I would have to search for a function to get the content with “strip_tags” and reduce characters, but after “googling”, found your post. Great !!

  10. Hello,

    I posted the above code to my functions php. I now cannot access my website. Here is the message I receive:Parse error: syntax error, unexpected T_FUNCTION in /home/content/94/8738594/html/wp-content/themes/associate/functions.php on line 82

    Please tell me how I can access my website in order to delete this code. Thanks if you can help. I’ve just lost my website and in a bit of a panic. Website address: http://www.thewritingbutler.com
    AB

  11. Added the code to my functions.php to enable excerpts on my pages.

    Worked perfectly, first time – thanks.

    W.

Leave A Reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.