Skip to content

Instantly share code, notes, and snippets.

@gmaggio
Created June 15, 2014 14:41
Show Gist options
  • Save gmaggio/78672a50b486f2a0ebf5 to your computer and use it in GitHub Desktop.
Save gmaggio/78672a50b486f2a0ebf5 to your computer and use it in GitHub Desktop.
[Wordpress] Set custom excerpt length
/*-----------------------------------------------------------------------------------*/
/* Set custom excerpt length */
/*-----------------------------------------------------------------------------------*/
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
function custom_excerpt_length( $length ) {
global $excerpt_length;
if ( $excerpt_length ) {
return $excerpt_length;
}
// return default length
return $length;
} // End custom_excerpt_length()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment