The get_the_excerpt() WordPress function

Built within WordPress, is the ability to add excerpts to your posts. Of course, these excerpts will not do you any good if you cannot display them on your WordPress site. In this article, we will show you the get_the_excerpt() function that you can use within your themes or plugins to display the post excerpt.

If you would like more information on creating WordPress plugins, see our tutorial series on creating your first WordPress plugin.

Basic usage

<?php $excerpt = get_the_excerpt() ?>

In this example, we simply get the excerpt using the get_the_excerpt() function, and assign it to the $excerpt variable.

Now that the variable contains the excerpt of the post, we can now display it like this:

<?php echo $excerpt; ?>

What if I don’t have an excerpt defined?

If an excerpt is not defined within the post, the wp_trim_excerpt() function will be used on the post content so that an excerpt is still displayed.

wp_trim_excerpt( string $text = '', WP_Post|object|int $post = null )

For more information on the wp_trim_excerpt() function, take a look at the wp_trim_excerpt() WordPress reference page.

References

For the full, official documentation on the get_the_excerpt() function, take a look at the get_the_excerpt() WordPress reference page.

Was this article helpful? Join the conversation!

Server Madness Sale
Score Big with Savings up to 99% Off

X