Skip to content

Instantly share code, notes, and snippets.

@TanvirAmi
Created November 14, 2015 08:53
Show Gist options
  • Save TanvirAmi/3bbf096054f9957cb274 to your computer and use it in GitHub Desktop.
Save TanvirAmi/3bbf096054f9957cb274 to your computer and use it in GitHub Desktop.
Filtering the default excerpt in wordpress post.
<?php
/**
* Control excerpt length.
*/
function custom_excerpt_length( $length ) {
return 15;
}
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