Skip to content

Instantly share code, notes, and snippets.

@MZAWeb
Created August 9, 2013 22:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MZAWeb/6197691 to your computer and use it in GitHub Desktop.
Save MZAWeb/6197691 to your computer and use it in GitHub Desktop.
<?php
function custom_excerpt_length( $length ) {
$la_cantidad_de_caracteres_que_quieras = 20;
return $la_cantidad_de_caracteres_que_quieras;
}
add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment