Skip to content

Instantly share code, notes, and snippets.

@chasereeves
Created April 29, 2011 19:54
Show Gist options
  • Save chasereeves/948919 to your computer and use it in GitHub Desktop.
Save chasereeves/948919 to your computer and use it in GitHub Desktop.
Custom Excerpt length & words
//=========================================================== CUSTOM EXCERPT LENGTH & WORDS
function no_ellipsis($text) {
global $post;
return str_replace('[...]', '&hellip; <span class="read_more"><a href="' . get_permalink($post->ID) . '">Read More &raquo;</a></span>', $text);
}
add_filter('the_excerpt', 'no_ellipsis');
function new_excerpt_length($length) { return 20; }
add_filter('excerpt_length', 'new_excerpt_length');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment