Skip to content

Instantly share code, notes, and snippets.

@crossreftech
Created February 25, 2014 05:17
Show Gist options
  • Save crossreftech/9203167 to your computer and use it in GitHub Desktop.
Save crossreftech/9203167 to your computer and use it in GitHub Desktop.
<?php
//set a custom excerpt length
function pd_custom_excerpt_length( $length ) {
//change the following to the number of words you would like to display
return 20;
}
add_filter( 'excerpt_length', 'pd_custom_excerpt_length');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment