Skip to content

Instantly share code, notes, and snippets.

@jainnidhi
Created July 14, 2015 07:40
Show Gist options
  • Save jainnidhi/2ae483c940b82c5bbd6e to your computer and use it in GitHub Desktop.
Save jainnidhi/2ae483c940b82c5bbd6e to your computer and use it in GitHub Desktop.
change excerpt length
//* Modify the length of post excerpts
add_filter( 'excerpt_length', 'cambodia_excerpt_length' );
function cambodia_excerpt_length( $length ) {
if(is_archive()) {
return 50; // pull first 50 words
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment