Skip to content

Instantly share code, notes, and snippets.

@AndreFCAmorim
Created November 6, 2022 15:30
Show Gist options
  • Save AndreFCAmorim/2c5cdd015d81bc31070e1af2aa24bc57 to your computer and use it in GitHub Desktop.
Save AndreFCAmorim/2c5cdd015d81bc31070e1af2aa24bc57 to your computer and use it in GitHub Desktop.
Change Excerpt Length on WordPress
<?php
add_filter(
'excerpt_length',
function ( $length ) {
// Number of words to display in the excerpt.
return 40;
},
500
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment