Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created May 20, 2013 15:25
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpspeak/5612936 to your computer and use it in GitHub Desktop.
Save wpspeak/5612936 to your computer and use it in GitHub Desktop.
/** Customize the length of excerpts */
<?php
/** Customize the length of excerpts */
add_filter( 'excerpt_length', 'new_excerpt_length' );
function new_excerpt_length( $length ) {
return 30;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment