> ## Documentation Index
> Fetch the complete documentation index at: https://kb.hosting.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Changing excerpt length in WordPress using PHP

> WordPress limits excerpts lengths to 55 words. This article shows you how to change the excerpts word count limit using a PHP function.

[WordPress](https://hosting.com/hosting/platforms/wordpress-hosting/managed-wordpress-hosting/) limits excerpts lengths to 55 words. This article shows you how to change the excerpts word count limit using a PHP function.

## Changing excerpt length in WordPress

<Warning>
  **Important**

  Always perform a backup before you make any changes to the theme files. If you break any codes, it will be easier to revert your site to its last good known state. Alternatively, you could also create a child theme. Read this link on how to create a child theme: [https://www.hosting.com/blog/wordpress-child-theme/](https://www.hosting.com/blog/wordpress-child-theme/)
</Warning>

Follow the steps below to edit your Theme setting file to change the excerpt length in WordPress:

1. Log in to your WordPress site with an administrator account.

2. On the **Dashboard** in the left sidebar, click **Appearance**, and then click **Theme Editor:** \*\*\*\*

3. On the **Theme Editor**, select the **Theme** you want to edit from the dropdown:\
   ![](https://static.hosting.com/kb/kb-wp-exceptlength-2.png)

4. The files for this selected theme are listed on the right column under **Theme Files.** Click on the file named "**functions.php**":

***

5. Insert the following code to the end of functions.php file and click **Update File** button to save the changes:

```javascript theme={null}
function new_excerpt_length($length) {

return 100;

}

add_filter('excerpt_length', 'new_excerpt_length');
```

6. The function changes the excerpt length to 100.

## Related articles

* [Adding a custom logo to WordPress](/docs/adding-a-custom-logo-to-wordpress)

* [Changing a WordPress account username](/docs/changing-a-wordpress-account-username)

* [Changing comment notification settings in WordPress](/docs/changing-comment-notification-settings-in-wordpress)
