Skip to content

Instantly share code, notes, and snippets.

@rayflores
Created July 29, 2014 23:32
Show Gist options
  • Save rayflores/ff9ad0dcf377f8c40df7 to your computer and use it in GitHub Desktop.
Save rayflores/ff9ad0dcf377f8c40df7 to your computer and use it in GitHub Desktop.
excerpt _new_ length
<?php
function new_excerpt_length( $length ) {
// change from default length of 55
return 200;
}
add_filter( 'excerpt_length', 'new_excerpt_length' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment