Skip to content

Instantly share code, notes, and snippets.

@jpgninja
Created June 5, 2017 00:37
Show Gist options
  • Save jpgninja/5633321c0ef98f7e66bd676d5214625a to your computer and use it in GitHub Desktop.
Save jpgninja/5633321c0ef98f7e66bd676d5214625a to your computer and use it in GitHub Desktop.
<?php
/**
* Clip blog post excerpts
*
*/
add_filter('get_the_excerpt','excerpt_char_limit');
function excerpt_char_limit($e){
return substr($e,0,150) . '&hellip;';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment