Created
April 16, 2018 21:17
-
-
Save juanfra/2eb1b670e9864a7c53d669093aedf030 to your computer and use it in GitHub Desktop.
Modify the number of words on the event excerpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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