Skip to content

Instantly share code, notes, and snippets.

@juanfra
Created April 16, 2018 21:17
Show Gist options
  • Save juanfra/2eb1b670e9864a7c53d669093aedf030 to your computer and use it in GitHub Desktop.
Save juanfra/2eb1b670e9864a7c53d669093aedf030 to your computer and use it in GitHub Desktop.
Modify the number of words on the event excerpt
<?php
//* Do NOT include the opening php tag
/**
* Modify the number of words on the event excerpt
*
*/
add_filter( 'excerpt_length', 'tec_custom_excerpt_length' );
function tec_custom_excerpt_length( $words ) {
$words = 10; // change this value to set the number of words
return $words;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment