Skip to content

Instantly share code, notes, and snippets.

@roose
Created February 28, 2012 15:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save roose/1933030 to your computer and use it in GitHub Desktop.
Save roose/1933030 to your computer and use it in GitHub Desktop.
Excerpt more string & length
<?php
function go_excerpt( $more ) {
return '...';
}
add_filter( 'excerpt_more', 'go_excerpt' );
function go_excerpt_length( $length ) {
return 30;
}
add_filter( 'excerpt_length', 'go_excerpt_length' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment